mirror of
https://github.com/Z3Prover/z3
synced 2026-04-26 13:53:33 +00:00
Use -j$(nproc) instead of -j3 in CI make builds
Replace hardcoded -j3 with -j$(nproc) in ci.yml, nightly.yml, and release.yml to utilize all available cores on GitHub Actions runners. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
parent
ccdfdbb176
commit
748fbd96f2
3 changed files with 21 additions and 21 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
|
@ -279,9 +279,9 @@ jobs:
|
|||
eval $(opam config env)
|
||||
python scripts/mk_make.py --ml
|
||||
cd build
|
||||
make -j3
|
||||
make -j3 examples
|
||||
make -j3 test-z3
|
||||
make -j$(nproc)
|
||||
make -j$(nproc) examples
|
||||
make -j$(nproc) test-z3
|
||||
cd ..
|
||||
|
||||
- name: Generate documentation
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue