Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fumiama authored Apr 7, 2024
1 parent 081e295 commit 1f2f8b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ jobs:
run: |
cmake -E make_directory build
cmake -S . -B build -G "Visual Studio 17 2022" -A x64 "-DBUILD=test" "-DCMAKE_BUILD_TYPE:STRING=Release"
cmake --build build --target all --
cmake --build build --config Release --target ALL_BUILD --
cd build
ctest -T test || ctest -T test --rerun-failed --output-on-failure
ctest --config Release -T test || ctest --config Release -T test --rerun-failed --output-on-failure
- name: Build and Run 32bit Tests
run: |
Remove-Item -Path build -Force
cmake -E make_directory build
cmake -S . -B build -G "Visual Studio 17 2022" -A x86 "-DBUILD=test" "-DFORCE_32BIT=1" "-DCMAKE_BUILD_TYPE:STRING=Release"
cmake --build build --target all --
ctest -T test || ctest -T test --rerun-failed --output-on-failure
cmake --build build --config Release --target ALL_BUILD --
ctest --config Release -T test || ctest --config Release -T test --rerun-failed --output-on-failure

0 comments on commit 1f2f8b0

Please sign in to comment.