From 55c2d66c99466f43202ccdfd7f9255be9c92d2d4 Mon Sep 17 00:00:00 2001 From: Eric Kalosa-Kenyon Date: Tue, 11 May 2021 09:37:07 -0700 Subject: [PATCH] updated osx to macOS 10.15.7, JDK to 14.0.2, and XCode to Xcode 12.2 (#904) The CI was broken. This commit fixes the CI. The root cause is reported in more detail in issue #905. In short, the default macOS version (10.13, see the TravisCI docs) used in TravisCI isn't supported by brew which caused the brew install pandoc in the download_miniconda.sh pre-install script to hang and time out the build. It failed even on inert PRs (adding a line to README, e.g.). Now, with the updated macOS version (from 10.13 to 10.15), brew is supported and the brew install pandoc command succeeds and allows the remainder of the CI build and test sequence to succeed. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 84936875..f2fc73f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,7 @@ sudo: false +osx_image: xcode12.2 + os: - osx - linux