Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flagarde committed Jul 18, 2024
1 parent 0f2d1b3 commit 382d4b5
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions .github/workflows/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,14 @@ jobs:
binary_dir: '../build'
variables: |
CMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build --parallel 2
- name: 🛠️ run-cmake (build)
uses: cmake-tools/run-cmake@v0-alpha
id: build
with:
mode: build
clean_first: true

- name: Test
run: cd build ; ctest -C Debug --output-on-failure

Expand Down Expand Up @@ -94,8 +100,14 @@ jobs:
binary_dir: '../build'
variables: |
CMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build --parallel 2
- name: 🛠️ run-cmake (build)
uses: cmake-tools/run-cmake@v0-alpha
id: build
with:
mode: build
clean_first: true

- name: Test
run: cd build ; ctest -C Debug --output-on-failure ${{ env.CTEST_VERBOSITY }}

Expand Down Expand Up @@ -139,7 +151,12 @@ jobs:
variables: |
CMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build --parallel 2
- name: 🛠️ run-cmake (build)
uses: cmake-tools/run-cmake@v0-alpha
id: build
with:
mode: build
clean_first: true

- name: Test
run: cd build ; ctest -C Debug --output-on-failure ${{ env.CTEST_VERBOSITY }}

0 comments on commit 382d4b5

Please sign in to comment.