From 7d4824a1e7cde8412e45f8c8e94ded143d0bec1d Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Tue, 2 Oct 2018 21:27:00 -0500 Subject: [PATCH] Upping the number of jobs in Traivs. --- tools/ci/travis-install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/travis-install.py b/tools/ci/travis-install.py index bbf92b2f5e..8a70c655c5 100644 --- a/tools/ci/travis-install.py +++ b/tools/ci/travis-install.py @@ -54,7 +54,7 @@ def install(omp=False, mpi=False, phdf5=False, dagmc=False): cmake_cmd.append('..') print(' '.join(cmake_cmd)) subprocess.check_call(cmake_cmd) - subprocess.check_call(['make', '-j2']) + subprocess.check_call(['make', '-j4']) subprocess.check_call(['sudo', 'make', 'install']) def main():