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 e581ed1 commit 3ad6f4b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@ jobs:
steps:

- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v2

- name: Build and Run 64bit Tests
run: |
mkdir build && cd build
cmake .. -DBUILD=test -G "Visual Studio 17 2022" -A x64
cmake --build .
ctest || ctest --rerun-failed --output-on-failure
cmake -DBUILD=test -G "Visual Studio 17 2022" -A x64 ..
cmake --build . --config Release --target all --
ctest -C Release -T test || ctest -C Release -T test --rerun-failed --output-on-failure
- name: Build and Run 32bit Tests
run: |
Remove-Item -Path build -Force
mkdir build && cd build
cmake .. -DBUILD=test -DFORCE_32BIT=1 -G "Visual Studio 17 2022" -A x86
cmake --build .
ctest || ctest --rerun-failed --output-on-failure
cmake -DBUILD=test -DFORCE_32BIT=1 -G "Visual Studio 17 2022" -A x86 ..
cmake --build . --config Release --target all --
ctest -C Release -T test || ctest -C Release -T test --rerun-failed --output-on-failure

0 comments on commit 3ad6f4b

Please sign in to comment.