Skip to content

Commit

Permalink
Add NEST v3.8 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pnbabu committed Jul 16, 2024
1 parent 4087d62 commit 2d60386
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nestml-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nest_branch: ["v2.20.2", "v3.0", "v3.7", "master"]
nest_branch: ["v2.20.2", "v3.0", "v3.7", "v3.8_rc1", "master"]
fail-fast: false
steps:
# Checkout the repository contents
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
# Integration tests
- name: Run integration tests
if: ${{ matrix.nest_branch == 'master' || matrix.nest_branch == 'v2.20.2' }}
if: ${{ matrix.nest_branch == 'master' || matrix.nest_branch == 'v3.8_rc1' || matrix.nest_branch == 'v2.20.2' }}
env:
LD_LIBRARY_PATH: ${{ env.NEST_INSTALL }}/lib/nest
run: |
Expand All @@ -229,15 +229,15 @@ jobs:
# Run only the nest integration tests for NEST versions other than master and 2.20.2
- name: Run integration tests
if: ${{ !(matrix.nest_branch == 'master' || matrix.nest_branch == 'v2.20.2') }}
if: ${{ !(matrix.nest_branch == 'master' || matrix.nest_branch == 'v3.8_rc1' || matrix.nest_branch == 'v2.20.2') }}
env:
LD_LIBRARY_PATH: ${{ env.NEST_INSTALL }}/lib/nest
run: |
pytest -s -o log_cli=true -o log_cli_level="DEBUG" tests/nest_tests/nest_integration_test.py
# Run IPython/Jupyter notebooks
- name: Run Jupyter notebooks
if: ${{ matrix.nest_branch == 'master' }}
if: ${{ matrix.nest_branch == 'master' || matrix.nest_branch == 'v3.8_rc1' }}
run: |
ipynb_fns=$(find $GITHUB_WORKSPACE/doc/tutorials -name '*.ipynb')
rc=0
Expand All @@ -259,7 +259,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nest_branch: ["master"]
nest_branch: ["master", "v3.8_rc1"]
fail-fast: false
steps:
# Checkout the repository contents
Expand Down

0 comments on commit 2d60386

Please sign in to comment.