Browse Source

.ci/install-deps.sh: Install the right gcc formula using brew.

pull/384/head
David Runge 7 years ago
parent
commit
1312c698f9
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      .ci/install-deps.sh

+ 3
- 3
.ci/install-deps.sh View File

@@ -13,15 +13,15 @@ if [ "$TRAVIS_OS_NAME" == "osx" ]; then
doxygen
# force installation of gcc-6 if required
if [ "${CC}" == "gcc-6" ]; then
brew install gcc6
brew install gcc@6
fi
# force installation of gcc-7 if required
if [ "${CC}" == "gcc-7" ]; then
brew install gcc7
brew install gcc@7
fi
# force installation of gcc-8 if required
if [ "${CC}" == "gcc-8" ]; then
brew install gcc8
brew install gcc@8
fi
fi



Loading…
Cancel
Save