Update .travis.yml

This commit is contained in:
Isuru Fernando 2018-02-10 16:33:46 -06:00 committed by GitHub
parent fbe994f446
commit 102b5e60b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,9 +18,12 @@ compiler:
script:
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]] && [[ "${CC}" == "gcc" ]]; then
brew update;
brew install gcc48;
export CC=gcc-4.8;
export CXX=g++-4.8;
brew install gcc;
brew link --overwrite gcc;
export CC=gcc;
export CXX=g++;
gcc --version;
g++ --version;
fi
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
export ARB_TEST_MULTIPLIER=0.1;