Use -j2 on the CI boxes

The travis-ci trusty container has two cores.
This commit is contained in:
Phil Turnbull 2017-06-16 15:05:14 -04:00
parent 9135d14b81
commit ee3caafe7b
2 changed files with 3 additions and 3 deletions

View file

@ -6,5 +6,5 @@ set -e
script/fetch-fixtures
script/check-mallocs
scan_build make
scan_build make -j2
script/test -b

View file

@ -88,9 +88,9 @@ else
fi
if [[ ! -z "$run_scan_build" ]]; then
scan_build make $target
scan_build make -j2 $target
else
make $target
make -j2 $target
fi
args=${args:-""}