12 - ubuntu-toolchain-r-test
17 - MATRIX_EVAL="CC=gcc-8 CXX=g++-8"
24 - ubuntu-toolchain-r-test
29 - MATRIX_EVAL="CC=gcc-7 CXX=g++-7"
36 - ubuntu-toolchain-r-test
41 - MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
43 # linux with gcc default (4.8)
47 # linux with clang default (3.5)
51 # linux with clang 3.8
56 - ubuntu-toolchain-r-test
61 - MATRIX_EVAL="CC=clang-3.8 CXX=clang++-3.8"
63 # osx with xcode8.3/clang
67 # osx with xcode9.2/clang
71 # osx with xcode10.0/clang
75 # osx with xcode10.1/clang
79 # osx with xcode/clang (default)
84 - eval "${MATRIX_EVAL}"
85 # uninstalling oclint, as it's preinstalled and conflicts with all versions of gcc
86 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
87 brew cask uninstall oclint || true
90 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
93 - ./.ci/install-deps.sh
96 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig; fi
99 - if [ "$TRAVIS_OS_NAME" == "linux" ]; then
100 ./waf configure --prefix=/usr --alsa --classic --dbus --systemd-unit;
103 - if [ "$TRAVIS_OS_NAME" == "osx" ]; then
104 CXXFLAGS="${CXXFLAGS} -flax-vector-conversions" ./waf configure;
105 CXXFLAGS="${CXXFLAGS} -flax-vector-conversions" ./waf -v build;
107 - sudo ./waf -v install
108 # run very basic tests
109 - sudo .ci/test_run.sh
117 # vim:set ts=2 sw=2 et: