From 53ceab9f9166ae3a755a72a7269dc87a2a1946fb Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Mon, 13 May 2019 17:06:56 -0700 Subject: [PATCH] build in parallel + stop building linux + clang --- .travis.yml | 13 +++++++------ test/run.py | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5c96ab62..4e88007b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,12 +15,13 @@ matrix: - CC=clang - CXX=clang++ - - os: linux - dist: xenial - script: python test/run.py - env: - - CC=clang - - CXX=clang++ + # Clang + Linux disabled for now + # - os: linux + # dist: xenial + # script: python test/run.py + # env: + # - CC=clang + # - CXX=clang++ # Windows - os: windows diff --git a/test/run.py b/test/run.py index b5898b53..27581e30 100755 --- a/test/run.py +++ b/test/run.py @@ -371,7 +371,7 @@ def run(testName, buildDir, sanitizer, xmlOutput, testRunName, buildOnly, useLLD #runCommand('{} -C {} {}'.format(makeCmd, buildDir, jobs)) # build with cmake - runCommand('cmake --build ' + buildDir) + runCommand('cmake --build --parallel ' + buildDir) if buildOnly: return