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 bde6239 commit 7575f3c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 16 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/Macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,11 @@ jobs:
mode: build
config: Debug

- name: Test
run: cd build ; ctest -C Debug --output-on-failure ${{ env.CTEST_VERBOSITY }}
- name: 🧪 run-ctest
uses: cmake-tools/run-ctest@v0-alpha
id: test
with:
build_config: Debug

gcc:
runs-on: macos-12
Expand Down Expand Up @@ -97,5 +100,8 @@ jobs:
with:
mode: build

- name: Test
run: cd build ; ctest -C Debug --output-on-failure ${{ env.CTEST_VERBOSITY }}
- name: 🧪 run-ctest
uses: cmake-tools/run-ctest@v0-alpha
id: test
with:
build_config: Debug
38 changes: 26 additions & 12 deletions .github/workflows/Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,13 @@ jobs:
id: build
with:
mode: build
config: Debug

- name: Build
run: cmake --build build --parallel 2
- name: Test
run: cd build ; ctest -C Debug --output-on-failure ${{ env.CTEST_VERBOSITY }}
- name: 🧪 run-ctest
uses: cmake-tools/run-ctest@v0-alpha
id: test
with:
build_config: Debug

msvc2019:
runs-on: windows-2019
Expand Down Expand Up @@ -108,8 +110,11 @@ jobs:
mode: build
config: Debug

- name: Test
run: cd build ; ctest -C Debug --output-on-failure ${{ env.CTEST_VERBOSITY }}
- name: 🧪 run-ctest
uses: cmake-tools/run-ctest@v0-alpha
id: test
with:
build_config: Debug

msvc2022:
runs-on: windows-2022
Expand Down Expand Up @@ -155,8 +160,11 @@ jobs:
mode: build
config: Debug

- name: Test
run: cd build ; ctest -C Debug --output-on-failure ${{ env.CTEST_VERBOSITY }}
- name: 🧪 run-ctest
uses: cmake-tools/run-ctest@v0-alpha
id: test
with:
build_config: Debug

clang:
runs-on: windows-2022
Expand Down Expand Up @@ -208,8 +216,11 @@ jobs:
with:
mode: build

- name: Test
run: cd build ; ctest -C Debug --output-on-failure ${{ env.CTEST_VERBOSITY }}
- name: 🧪 run-ctest
uses: cmake-tools/run-ctest@v0-alpha
id: test
with:
build_config: Debug

clang-cl:
runs-on: windows-2022
Expand Down Expand Up @@ -262,5 +273,8 @@ jobs:
mode: build
config: Debug

- name: Test
run: cd build ; ctest -C Debug --output-on-failure ${{ env.CTEST_VERBOSITY }}
- name: 🧪 run-ctest
uses: cmake-tools/run-ctest@v0-alpha
id: test
with:
build_config: Debug

0 comments on commit 7575f3c

Please sign in to comment.