Skip to content

Commit

Permalink
Update cmake-multi-platform.yml --output-on-failure and remove -C Rel…
Browse files Browse the repository at this point in the history
…ease
  • Loading branch information
YSaxon authored Mar 11, 2024
1 parent 9d41f5a commit 242fa74
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ jobs:
if: runner.os == 'Linux'
run: |
if [ "${{ matrix.arch }}" == "x86" ] || [ "${{ matrix.arch }}" == "x64" ]; then
cd build && ctest -C Release
cd build && ctest --output-on-failure
elif [ "${{ matrix.arch }}" == "arm" ]; then
cd build && qemu-arm -L /usr/arm-linux-gnueabi ctest -C Release
cd build && qemu-arm -L /usr/arm-linux-gnueabi ctest --output-on-failure
elif [ "${{ matrix.arch }}" == "arm64" ]; then
cd build && qemu-aarch64 -L /usr/aarch64-linux-gnu ctest -C Release
cd build && qemu-aarch64 -L /usr/aarch64-linux-gnu ctest --output-on-failure
elif [ "${{ matrix.arch }}" == "riscv64" ]; then
cd build && qemu-riscv64 -L /usr/riscv64-linux-gnu ctest -C Release
cd build && qemu-riscv64 -L /usr/riscv64-linux-gnu ctest --output-on-failure
fi
- name: Run Tests (macOS & Windows)
if: runner.os != 'Linux'
run: cd build && ctest -C Release
run: cd build && ctest --output-on-failure

0 comments on commit 242fa74

Please sign in to comment.