Skip to content

Commit

Permalink
Fix CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
csukuangfj committed Dec 21, 2023
1 parent 1831e53 commit 266b3eb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-macos-cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
run: |
mkdir build_release
cd build_release
cmake ..
cmake -DCMAKE_CXX_STANDARD=17 ..
make VERBOSE=1 -j3
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-ubuntu-cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
run: |
mkdir build_release
cd build_release
cmake ..
cmake -DCMAKE_CXX_STANDARD=17 ..
make VERBOSE=1 -j3
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-ubuntu-cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
run: |
mkdir build_release
cd build_release
cmake ..
cmake -DCMAKE_CXX_STANDARD=17 ..
make VERBOSE=1 -j3
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-windows-cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,6 @@ jobs:
shell: bash
run: |
cd build_release
cmake --build . --target ALL_BUILD --config Release
cmake -DCMAKE_CXX_STANDARD=17 --build . --target ALL_BUILD --config Release
ls -lh bin/*/*
ctest -C Release --verbose --output-on-failure
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-windows-cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,6 @@ jobs:
shell: bash
run: |
cd build_release
cmake --build . --target ALL_BUILD --config Release
cmake -DCMAKE_CXX_STANDARD=17 --build . --target ALL_BUILD --config Release
ls -lh bin/*/*
ctest -C Release --verbose --output-on-failure

0 comments on commit 266b3eb

Please sign in to comment.