Skip to content

Commit

Permalink
fix: update CI configuration to use new option for regenerating bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayankur31 committed Mar 11, 2021
1 parent c9af3d8 commit 8c06d12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
working-directory: ${{github.workspace}}/NeuroML_API_build
shell: bash
run: |
cmake $GITHUB_WORKSPACE
cmake $GITHUB_WORKSPACE -DREGENERATE_BINDINGS=ON
- name: Build
working-directory: ${{github.workspace}}/NeuroML_API_build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
working-directory: ${{github.workspace}}/NeuroML_API_build
shell: bash
run: |
cmake $GITHUB_WORKSPACE
cmake $GITHUB_WORKSPACE -DREGENERATE_BINDINGS=ON
- name: Build
working-directory: ${{github.workspace}}/NeuroML_API_build
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ script:
- ls -alt
- mkdir NeuroML_API_build
- cd NeuroML_API_build
- cmake ..
- cmake -DREGENERATE_BINDINGS=ON ..
- make
- ctest
- ./create_net network.nml
Expand Down

0 comments on commit 8c06d12

Please sign in to comment.