From ee3caafe7bdf1e43065150146985b047e9f62903 Mon Sep 17 00:00:00 2001 From: Phil Turnbull Date: Fri, 16 Jun 2017 15:05:14 -0400 Subject: [PATCH] Use -j2 on the CI boxes The travis-ci trusty container has two cores. --- script/ci | 2 +- script/test | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/script/ci b/script/ci index 64690944..4610a351 100755 --- a/script/ci +++ b/script/ci @@ -6,5 +6,5 @@ set -e script/fetch-fixtures script/check-mallocs -scan_build make +scan_build make -j2 script/test -b diff --git a/script/test b/script/test index 35c7ec33..71f3a89d 100755 --- a/script/test +++ b/script/test @@ -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:-""}