3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-22 12:38:52 +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: |
set -e
cd build
make -j$(nproc)
make -j$(nproc) examples
make -j$(nproc) test-z3
JOBS=$(getconf _NPROCESSORS_ONLN 2>/dev/null || sysctl -n hw.ncpu || echo 1)
make -j"$JOBS"
make -j"$JOBS" examples
make -j"$JOBS" test-z3
./cpp_example
./c_example
cd ..