summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSZEDER Gábor <szeder.dev@gmail.com>2019-10-24 00:20:40 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-10-24 02:31:07 (GMT)
commit7d4733c5019c9dab78583cb1a17a9d83370c2b89 (patch)
tree1d48de20ac4ff1d47cdf79d55a92499560e2b690
parent108b97dc372828f0e72e56bbb40cae8e1e83ece6 (diff)
downloadgit-7d4733c5019c9dab78583cb1a17a9d83370c2b89.zip
git-7d4733c5019c9dab78583cb1a17a9d83370c2b89.tar.gz
git-7d4733c5019c9dab78583cb1a17a9d83370c2b89.tar.bz2
ci: fix GCC install in the Travis CI GCC OSX job
A few days ago Travis CI updated their existing OSX images, including the Homebrew database in the xcode10.1 OSX image that we use. Since then installing dependencies in the 'osx-gcc' job fails when it tries to link gcc@8: + brew link gcc@8 Error: No such keg: /usr/local/Cellar/gcc@8 GCC8 is still installed but not linked to '/usr/local' in the updated image, as it was before this update, but now we have to link it by running 'brew link gcc'. So let's do that then, and fall back to linking gcc@8 if it doesn't, just to be sure. Our builds on Azure Pipelines are unaffected by this issue. The OSX image over there doesn't contain the gcc@8 package, so we have to 'brew install' it, which already takes care of linking it to '/usr/local'. After that the 'brew link gcc' command added by this patch fails, but the ||-chained fallback 'brew link gcc@8' command succeeds with an "already linked" warning. Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xci/install-dependencies.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/install-dependencies.sh b/ci/install-dependencies.sh
index 85a9d6b..b54ccb4 100755
--- a/ci/install-dependencies.sh
+++ b/ci/install-dependencies.sh
@@ -43,6 +43,7 @@ osx-clang|osx-gcc)
brew install caskroom/cask/perforce
case "$jobname" in
osx-gcc)
+ brew link gcc ||
brew link gcc@8
;;
esac