Skip to content

Commit

Permalink
always do jupedsim tests in full build #21 #3
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Apr 2, 2024
1 parent 2fde9d1 commit 5956b99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ jobs:
uses: hendrikmuhs/ccache-action@v1.2

- name: Cloning jupedsim
if: matrix.build_type == 'full' && github.repository == 'DLR-TS/sumo'
if: matrix.build_type == 'full' && matrix.compiler == 'gcc'
uses: actions/checkout@v4
with:
repository: PedestrianDynamics/jupedsim
ref: ${{ matrix.jps_version }}
path: jupedsim

- name: Building libjupedsim
if: matrix.build_type == 'full' && github.repository == 'DLR-TS/sumo'
if: matrix.build_type == 'full' && matrix.compiler == 'gcc'
run: |
sudo apt-get install libgeos-dev
cmake -B jupedsim-build -DCMAKE_INSTALL_PREFIX=jupedsim-install jupedsim
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
make CTEST_OUTPUT_ON_FAILURE=1 examples test
- name: Extra tests
if: matrix.build_type == 'full' && github.repository == 'DLR-TS/sumo'
if: matrix.build_type == 'full' && matrix.compiler == 'gcc'
run: |
sudo apt-get install python2
sumo/tests/runTests.sh -b ci -a sumo.meso.ci,sumo.extra.ci
Expand Down

0 comments on commit 5956b99

Please sign in to comment.