Skip to content

Commit 09551ce

Browse files
author
Giulia Baldini
committed
Fix builds and add gitlab trigger token
1 parent e04a85e commit 09551ce

File tree

4 files changed

+34
-1
lines changed

4 files changed

+34
-1
lines changed

.github/workflows/gitlab.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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"}'

bico/_core.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
#include "point/pointweightmodifier.h"
2020
#include "point/realspaceprovider.h"
2121

22+
typedef unsigned int uint;
23+
2224
using namespace CluE;
2325

2426
class BicoExternal
File renamed without changes.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jupyter = "^1.0.0"
2323
ucimlrepo = "^0.0.7"
2424

2525
[tool.poetry.build]
26-
script = "build.py"
26+
script = "build_extension.py"
2727
generate-setup-file = true
2828

2929
[build-system]

0 commit comments

Comments
 (0)