From d89063a20399557a77f6fbe5c8a828ae8490ca6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=A4rkl?= Date: Tue, 23 Jul 2019 00:36:03 +0200 Subject: [PATCH] Disable Homebrew Update on Travis (#1613) Also use newer osx image and install macOS headers. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e6e044cd..8e322fba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,12 +25,12 @@ matrix: - name: macOS QMake + Deploy os: osx - osx_image: xcode10.1 + osx_image: xcode10.2 env: BUILD_SYSTEM=qmake DEPLOY=1 - name: macOS CMake os: osx - osx_image: xcode10.1 + osx_image: xcode10.2 env: BUILD_SYSTEM=cmake - name: Documentation + Deploy @@ -65,7 +65,6 @@ dist: bionic addons: homebrew: brewfile: scripts/Brewfile - update: true install: - scripts/fetch_deps.sh @@ -73,6 +72,7 @@ install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PATH=/usr/local/opt/llvm/bin:$PATH; source scripts/prepare_breakpad_macos.sh; + sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export LD_LIBRARY_PATH="`llvm-config --libdir`:$LD_LIBRARY_PATH";