3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 09:55:19 +00:00

CI: compile with 3 threads

This commit is contained in:
Nuno Lopes 2019-06-12 10:44:30 +01:00
parent 8d3dfd36b2
commit 328b182994

View file

@ -20,9 +20,9 @@ jobs:
- script: $(cmdLine) - script: $(cmdLine)
- script: | - script: |
cd build cd build
make make -j3
make examples make -j3 examples
make test-z3 make -j3 test-z3
./cpp_example ./cpp_example
./c_example ./c_example
cd .. cd ..
@ -105,9 +105,9 @@ jobs:
- script: python scripts/mk_make.py -d --java --dotnet - script: python scripts/mk_make.py -d --java --dotnet
- script: | - script: |
cd build cd build
make make -j3
make examples make -j3 examples
make test-z3 make -j3 test-z3
./cpp_example ./cpp_example
./c_example ./c_example
cd .. cd ..