3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-08-09 23:42:21 +00:00

Fix cmake build command for parallel execution

This commit is contained in:
Nikolaj Bjorner 2026-08-03 20:36:53 -07:00 committed by GitHub
parent a11b4aacff
commit 1ba56667b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,7 +46,7 @@ jobs:
2>&1 | tee /tmp/clang-tidy-warning-report/configure.log || configure_status=$?
if [ "$configure_status" -eq 0 ]; then
cmake --build build --target shell test-z3 --parallel $(nproc) -- -k 0 \
cmake --build build --target shell --parallel $(nproc) -- -k 0 \
2>&1 | tee /tmp/clang-tidy-warning-report/build.log || build_status=$?
else
printf 'configure failed; build skipped\n' | tee /tmp/clang-tidy-warning-report/build.log