From 31caa79abe346c5be1d8e73d4e207d98364103b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Sun, 8 Sep 2019 21:22:47 -0700 Subject: [PATCH] travisci: Limit OSX build only to debug build to prevent CI timeout. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d668f8e52..a41d485dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ before_script: script: - if [ "$TRAVIS_OS_NAME" == "linux" ]; then make build CXX="g++-8" CC="gcc-8"; fi - - if [ "$TRAVIS_OS_NAME" == "osx" ]; then make build; fi + - if [ "$TRAVIS_OS_NAME" == "osx" ]; then make osx-debug64; fi branches: only: @@ -33,4 +33,4 @@ branches: notifications: email: false -osx_image: xcode9.3 +osx_image: xcode10.3