Fix CI errors

This commit is contained in:
Fangjun Kuang 2023-12-21 15:44:03 +08:00
parent 1831e53a77
commit 266b3eb234
5 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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