Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
isuruf committed Feb 10, 2018
1 parent fbe994f commit 102b5e6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 102b5e6

Please sign in to comment.