Skip to content

Commit fab97f5

Browse files
author
MarcoFalke
committed
ci: Avoid && dropping errors
1 parent fad009a commit fab97f5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/ci-test-each-commit-exec.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ echo "Running test-one-commit on $( git log -1 )"
1414
# Use clang++, because it is a bit faster and uses less memory than g++
1515
CC=clang CXX=clang++ cmake -B build -DWERROR=ON -DWITH_ZMQ=ON -DBUILD_GUI=ON -DBUILD_BENCH=ON -DBUILD_FUZZ_BINARY=ON -DWITH_USDT=ON -DCMAKE_CXX_FLAGS='-Wno-error=unused-member-function'
1616

17-
cmake --build build -j "$( nproc )" && ctest --output-on-failure --stop-on-failure --test-dir build -j "$( nproc )"
17+
cmake --build build -j "$( nproc )"
18+
19+
ctest --output-on-failure --stop-on-failure --test-dir build -j "$( nproc )"
1820

1921
./build/test/functional/test_runner.py -j $(( $(nproc) * 2 )) --combinedlogslen=99999999

0 commit comments

Comments
 (0)