From fed0a65f91933e38a5a6ed5540bfe094f1c495da Mon Sep 17 00:00:00 2001 From: Pentarctagon Date: Thu, 30 Jan 2020 22:01:16 -0600 Subject: [PATCH] Move the macOS builds to the front of the Travis job queue. For some reason the xcode job easily runs the longest despite being a partial recompile. Having it also be the final job to run therefore means that the entire build will be waiting for it to complete, whereas having it earlier allows other shorter jobs to be run alongside it. --- .travis.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index bd15fd4bfb9..6f7b802e6ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,14 @@ matrix: - os: windows env: OPT=Release + - os: osx + compiler: clang + env: TOOL=scons CXXSTD=14 NLS=false OPT=-O0 + + - os: osx + compiler: clang + env: TOOL=xcodebuild + - compiler: gcc env: CXXSTD=14 NLS=true LTS=1604 BRANCH=master @@ -47,14 +55,6 @@ matrix: - env: NLS=true LTS=flatpak BRANCH=master - - os: osx - compiler: clang - env: TOOL=scons CXXSTD=14 NLS=false OPT=-O0 - - - os: osx - compiler: clang - env: TOOL=xcodebuild - install: - . ./utils/travis/steps/install.sh