From 917f1a2f7365b920d3bb04722af582ee5aa9bf69 Mon Sep 17 00:00:00 2001 From: Curtis Gedak Date: Thu, 30 Apr 2020 10:40:16 -0600 Subject: [PATCH] Set minimum of xcode11 for macOS X in Travis CI build The Travis CI builds for macOS X are failing for xcode values less than 11. Reference information for macOS X: - Homebrew project bottles for qt https://formulae.brew.sh/formula/qt - Travis CI build values for xcode https://docs.travis-ci.com/user/reference/osx#macos-version See also related issue: - Issue #696 - Install on Mac Catalina Requires Signed Installer --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a39e423..995f028 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: generic os: - osx - linux -osx_image: xcode10.1 +osx_image: xcode11 sudo: required install: - if [ "$TRAVIS_OS_NAME" = "osx" ]; then package/prepare_osx.sh; fi