make sure that the C code gets double data #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger Gitlab Pipeline | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "fair_kmeans/**" | |
- "tests/**" | |
- "poetry.lock" | |
pull_request: | |
paths: | |
- "fair_kmeans/**" | |
- "tests/**" | |
- "poetry.lock" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Trigger GitLab Pipeline | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger Job | |
uses: digital-blueprint/gitlab-pipeline-trigger-action@v1 | |
with: | |
host: 'gitlab.cs.uni-duesseldorf.de' | |
trigger_token: ${{ secrets.DEPLOY_TRIGGER_TOKEN }} | |
access_token: ${{ secrets.DEPLOY_ACCESS_TOKEN }} | |
id: '3102' | |
ref: 'main' | |
variables: | | |
{ | |
"PROJECT": "fair-kmeans", | |
"GIT_HASH": "${{ github.event.pull_request.head.sha || github.sha }}" | |
} |