File tree Expand file tree Collapse file tree 4 files changed +34
-1
lines changed
Expand file tree Collapse file tree 4 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Trigger Gitlab Pipeline
2+ on :
3+ push :
4+ branches :
5+ - main
6+ paths :
7+ - " bico/**"
8+ - " tests/**"
9+ - " poetry.lock"
10+ pull_request :
11+ paths :
12+ - " bico/**"
13+ - " tests/**"
14+ - " poetry.lock"
15+ # Allows you to run this workflow manually from the Actions tab
16+ workflow_dispatch :
17+
18+ jobs :
19+ build :
20+ name : Trigger GitLab Pipeline
21+ runs-on : ubuntu-latest
22+ steps :
23+ - name : Trigger Job
24+ uses : digital-blueprint/gitlab-pipeline-trigger-action@v1
25+ with :
26+ host : ' gitlab.cs.uni-duesseldorf.de'
27+ trigger_token : ${{ secrets.DEPLOY_TRIGGER_TOKEN }}
28+ access_token : ${{ secrets.DEPLOY_ACCESS_TOKEN }}
29+ id : ' 3102'
30+ ref : ' main'
31+ variables : ' {"PROJECT":"bico"}'
Original file line number Diff line number Diff line change 1919#include " point/pointweightmodifier.h"
2020#include " point/realspaceprovider.h"
2121
22+ typedef unsigned int uint;
23+
2224using namespace CluE ;
2325
2426class BicoExternal
File renamed without changes.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ jupyter = "^1.0.0"
2323ucimlrepo = " ^0.0.7"
2424
2525[tool .poetry .build ]
26- script = " build .py"
26+ script = " build_extension .py"
2727generate-setup-file = true
2828
2929[build-system ]
You can’t perform that action at this time.
0 commit comments