File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 14
14
- MPICH_GCC7_BOT_URL_HEAD="https://github.com/sourceryinstitute/OpenCoarrays/files/976779/"
15
15
- MPICH_BOT_URL_TAIL="mpich-3.2_3.yosemite.bottle.1.tar.gz"
16
16
- BUILD_TYPES="Release Debug RelWithDebInfo CodeCoverage"
17
- matrix :
18
- - GCC=6 OSX_PACKAGES="gcc@6 cmake shellcheck "
19
- - GCC=7 OSX_PACKAGES="gcc cmake shellcheck "
17
+ matrix : # shellcheck installed manually below for macOS
18
+ - GCC=6 OSX_PACKAGES="gcc@6 cmake"
19
+ - GCC=7 OSX_PACKAGES="gcc cmake"
20
20
21
21
matrix :
22
22
fast_finish : true
@@ -137,9 +137,11 @@ install:
137
137
if [[ (-n ${TRAVIS}) && (${TRAVIS_OS_NAME} == osx) ]]; then
138
138
brew update > /dev/null
139
139
140
+ [[ "$(brew ls --versions shellcheck)" ]] || brew install --force-bottle shellcheck
141
+ brew outdated shellcheck || brew upgrade --force-bottle shellcheck
140
142
for pkg in ${OSX_PACKAGES}; do
141
- [[ "$(brew ls --versions ${pkg})" ]] || brew install --force-bottle ${pkg}
142
- brew outdated ${pkg} || brew upgrade --force-bottle ${pkg}
143
+ [[ "$(brew ls --versions ${pkg})" ]] || brew install ${pkg}
144
+ brew outdated ${pkg} || brew upgrade ${pkg}
143
145
done
144
146
if [[ ${BUILD_TYPE} == InstallScript ]]; then # uninstall some stuff if present
145
147
brew uninstall --force --ignore-dependencies cmake || true
You can’t perform that action at this time.
0 commit comments