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.
This commit is contained in:
parent
341780b853
commit
fed0a65f91
1 changed files with 8 additions and 8 deletions
16
.travis.yml
16
.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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue