Skip to content

Commit dea3532

Browse files
committed
Fix bash variable typo and test bld mat expansion
1 parent 911eb61 commit dea3532

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ env:
1414
- MPICH_BOT_URL_TAIL="mpich-3.2_3.yosemite.bottle.1.tar.gz"
1515
- BUILD_TYPES="Release Debug RelWithDebInfo CodeCoverage"
1616
matrix:
17-
- GCC=6 OSX_PACKAGES="gcc@6 cmake shellcheck"
18-
- GCC=7 OSX_PACKAGES="gcc cmake shellcheck"
17+
- GCC=6 OSX_PACKAGES="gcc@6 shellcheck" BUILD_TYPE="InstallScript"
18+
- GCC="6 7" OSX_PACKAGES="gcc gcc@6 cmake shellcheck" BUILD_TYPE="cmake"
1919

2020
matrix:
2121
fast_finish: true

developer-scripts/travis/before_install.all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if ! [[ "${TRAVIS_TAG}" ]] || ! ${TRAVIS_SECURE_ENV_VARS} ; then
66
else
77
echo "Encrypted vars not unset"
88
fi
9-
if [[ "${OS_TYPE}" == [Dd]arwin* ]]; then
9+
if [[ "${OSTYPE}" == [Dd]arwin* ]]; then
1010
export PATH="${PATH}:${HOME}/Library/Python/2.7/bin"
1111
else
1212
export PATH="${CACHE}/bin:${PATH}"

developer-scripts/travis/test-script.cmake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ for version in ${GCC}; do
2828
export CC=gcc-${version}
2929
${FC} --version
3030
${CC} --version
31-
if [[ ${OS_TYPE} == [Dd]arwin* ]]; then
31+
if [[ ${OSTYPE} == [Dd]arwin* ]]; then
3232
# Ideally this stuff would be in the `install:` section
3333
# but puting it here simplifies the Travis code a lot
3434
MPICH_BOT_URL_HEAD=MPICH_GCC${version}_BOT_URL_HEAD

0 commit comments

Comments
 (0)