quick fix for failing travis builds on os x

This commit is contained in:
Jonathan B. Coe 2016-09-24 19:38:43 +01:00
parent c47c1797d2
commit fd7d35464b
1 changed files with 2 additions and 1 deletions

View File

@ -149,7 +149,8 @@ install:
mkdir cmake && travis_retry wget --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake mkdir cmake && travis_retry wget --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake
export PATH=${DEPS_DIR}/cmake/bin:${PATH} export PATH=${DEPS_DIR}/cmake/bin:${PATH}
elif [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then elif [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
brew install cmake ccache which cmake || brew install cmake
which ccache || brew install ccache
fi fi
before_script: before_script: