Skip to content

Commit 00ec070

Browse files
Slightly increase the number of parallel build jobs
Travis hosts typically 2 cores available, slightly bump the number of parallel jobs to be (number of cores + 1)
1 parent f0fc345 commit 00ec070

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@ install:
252252
- ccache --max-size=2G
253253
- make -C src minisat2-download
254254
- make -C src/ansi-c library_check
255-
- make -C src "CXX=${COMPILER}" "CXXFLAGS=-Wall -Werror -pedantic -O2 -g ${EXTRA_CXXFLAGS}" -j2
256-
- make -C src "CXX=${COMPILER}" "CXXFLAGS=-Wall -Werror -pedantic -O2 -g ${EXTRA_CXXFLAGS}" -j2 clobber.dir memory-models.dir
255+
- make -C src "CXX=${COMPILER}" "CXXFLAGS=-Wall -Werror -pedantic -O2 -g ${EXTRA_CXXFLAGS}" -j3
256+
- make -C src "CXX=${COMPILER}" "CXXFLAGS=-Wall -Werror -pedantic -O2 -g ${EXTRA_CXXFLAGS}" -j3 clobber.dir memory-models.dir
257257

258258
script:
259259
- if [ -e bin/gcc ] ; then export PATH=$PWD/bin:$PATH ; fi ;

0 commit comments

Comments
 (0)