Skip to content

Commit 8c06d12

Browse files
committed
fix: update CI configuration to use new option for regenerating bindings
1 parent c9af3d8 commit 8c06d12

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
working-directory: ${{github.workspace}}/NeuroML_API_build
3434
shell: bash
3535
run: |
36-
cmake $GITHUB_WORKSPACE
36+
cmake $GITHUB_WORKSPACE -DREGENERATE_BINDINGS=ON
3737
3838
- name: Build
3939
working-directory: ${{github.workspace}}/NeuroML_API_build

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
working-directory: ${{github.workspace}}/NeuroML_API_build
2727
shell: bash
2828
run: |
29-
cmake $GITHUB_WORKSPACE
29+
cmake $GITHUB_WORKSPACE -DREGENERATE_BINDINGS=ON
3030
3131
- name: Build
3232
working-directory: ${{github.workspace}}/NeuroML_API_build

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ script:
1515
- ls -alt
1616
- mkdir NeuroML_API_build
1717
- cd NeuroML_API_build
18-
- cmake ..
18+
- cmake -DREGENERATE_BINDINGS=ON ..
1919
- make
2020
- ctest
2121
- ./create_net network.nml

0 commit comments

Comments
 (0)