Commit b31bd37a authored by Max Kellermann's avatar Max Kellermann

.travis.yml: check $TRAVIS_OS_NAME

Prepare for Mac OS X support by omitting those Ubuntu-specific commands.
parent 78faee8c
...@@ -19,15 +19,15 @@ compiler: ...@@ -19,15 +19,15 @@ compiler:
before_install: before_install:
# C++14 # C++14
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - test "$TRAVIS_OS_NAME" != "linux" || sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq - test "$TRAVIS_OS_NAME" != "linux" || sudo apt-get update -qq
install: install:
# C++14 # C++14
- sudo apt-get install -qq g++-5 - test "$TRAVIS_OS_NAME" != "linux" || sudo apt-get install -qq g++-5
script: script:
- export CC=gcc-5 CXX=g++-5 - test "$TRAVIS_OS_NAME" != "linux" || export CC=gcc-5 CXX=g++-5
- ./autogen.sh - ./autogen.sh
- ./configure --enable-test - ./configure --enable-test
- make - make
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment