3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-04 06:16:09 +00:00

Update .github/workflows/ci.yml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Lev Nachmanson 2026-03-20 14:05:44 -10:00
parent b8736991f3
commit c2a17dac0b

View file

@ -402,9 +402,10 @@ jobs:
run: | run: |
set -e set -e
cd build cd build
make -j$(nproc) JOBS=$(getconf _NPROCESSORS_ONLN 2>/dev/null || sysctl -n hw.ncpu || echo 1)
make -j$(nproc) examples make -j"$JOBS"
make -j$(nproc) test-z3 make -j"$JOBS" examples
make -j"$JOBS" test-z3
./cpp_example ./cpp_example
./c_example ./c_example
cd .. cd ..