Skip to content

Commit

Permalink
Don't build notebooks on ubuntu 20.04; 22.04 only
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasDuswald committed Feb 16, 2024
1 parent f844706 commit d01cd4e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ubuntu-system-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ jobs:
fi
# Don't do this in the `Build BioDynaMo step`, because notebooks might time out in GHA
# runners, while waiting for other targets to be compiled
# runners, while waiting for other targets to be compiled. Run notebooks only
# if the event is a pull request, and on ubuntu-22.04.
- name: Run notebooks
shell: bash
run: |
Expand All @@ -131,7 +132,8 @@ jobs:
-Dreal_t=${{ env.REALT }} \
-B build
cmake --build build --parallel --config Release --target notebooks -- -j1
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-22.04'


- name: Build BioDynaMo
shell: bash
Expand Down

0 comments on commit d01cd4e

Please sign in to comment.