Skip to content

Commit

Permalink
Fix building against latest docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
MehdiChinoune committed Apr 1, 2024
1 parent 3d04a95 commit f4334d7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@ jobs:
- uses: actions/checkout@v4
- name: Configuring
run: |
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DPFUNIT_DIR=/opt/pfunit/PFUNIT-4.2/cmake
cmake \
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
-DPFUNIT_DIR=/opt/pfunit/PFUNIT-4.9/cmake \
-S . \
-B build
- name: Building
run: make -C build -j$(nproc)
run: cmake --build build -j$(nproc)
- name: Testing
run: |
cd build
Expand Down

0 comments on commit f4334d7

Please sign in to comment.