blob: ed53635af35f4c407279936e751113023f52fbc3 [file] [log] [blame]
Davide Pesavento90034832018-05-30 10:10:31 -04001language: cpp
Davide Pesavento3bafe502019-09-26 18:20:30 -04002dist: bionic
Eric Newberry197590e2016-12-27 23:08:01 -07003env:
4 global:
Davide Pesavento90034832018-05-30 10:10:31 -04005 - WAF_JOBS=2
6
Alexander Afanasyev3baef102016-08-01 14:21:47 -07007matrix:
8 include:
Davide Pesavento90034832018-05-30 10:10:31 -04009 # Linux/gcc
10 # https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test/+packages
Alexander Afanasyev3baef102016-08-01 14:21:47 -070011 - os: linux
Davide Pesavento90034832018-05-30 10:10:31 -040012 env: COMPILER=g++-5
Alexander Afanasyev3baef102016-08-01 14:21:47 -070013 - os: linux
Davide Pesavento90034832018-05-30 10:10:31 -040014 env: COMPILER=g++-6
15 - os: linux
16 env: COMPILER=g++-7
17 - os: linux
18 env: COMPILER=g++-8
Davide Pesavento3bafe502019-09-26 18:20:30 -040019 - os: linux
20 env: COMPILER=g++-9
Davide Pesavento90034832018-05-30 10:10:31 -040021
22 # Linux/clang
23 # https://apt.llvm.org/
24 - os: linux
Davide Pesavento90034832018-05-30 10:10:31 -040025 env: COMPILER=clang++-3.9
26 - os: linux
27 env: COMPILER=clang++-4.0
28 - os: linux
29 env: COMPILER=clang++-5.0
30 - os: linux
31 env: COMPILER=clang++-6.0
Davide Pesavento3bafe502019-09-26 18:20:30 -040032 # disable AddressSanitizer with clang 7 and 8
Davide Pesavento80017002019-03-18 19:04:34 -040033 # due to https://bugs.llvm.org/show_bug.cgi?id=40808
Davide Pesavento90034832018-05-30 10:10:31 -040034 - os: linux
Davide Pesavento80017002019-03-18 19:04:34 -040035 env: COMPILER=clang++-7 DISABLE_ASAN=yes
36 - os: linux
37 env: COMPILER=clang++-8 DISABLE_ASAN=yes
38 - os: linux
Davide Pesavento3bafe502019-09-26 18:20:30 -040039 env: COMPILER=clang++-9
40 - os: linux
41 env: COMPILER=clang++-10
Davide Pesavento90034832018-05-30 10:10:31 -040042
43 # macOS/clang
Davide Pesavento80017002019-03-18 19:04:34 -040044 # https://docs.travis-ci.com/user/reference/osx/#macos-version
Davide Pesavento90034832018-05-30 10:10:31 -040045 - os: osx
Davide Pesavento80017002019-03-18 19:04:34 -040046 osx_image: xcode9.2
47 env: OSX_VERSION=10.12
48 - os: osx
49 osx_image: xcode9.4
Davide Pesavento90034832018-05-30 10:10:31 -040050 env: OSX_VERSION=10.13
Davide Pesavento80017002019-03-18 19:04:34 -040051 - os: osx
52 osx_image: xcode10.1
53 env: OSX_VERSION=10.13
54 - os: osx
Davide Pesavento3bafe502019-09-26 18:20:30 -040055 osx_image: xcode10.3
56 env: OSX_VERSION=10.14
57 - os: osx
58 osx_image: xcode11
Davide Pesavento80017002019-03-18 19:04:34 -040059 env: OSX_VERSION=10.14
Davide Pesavento90034832018-05-30 10:10:31 -040060
61 allow_failures:
Davide Pesavento3bafe502019-09-26 18:20:30 -040062 - env: COMPILER=clang++-10
Davide Pesavento90034832018-05-30 10:10:31 -040063
64 fast_finish: true
65
Davide Pesavento3bafe502019-09-26 18:20:30 -040066before_install: |
Davide Pesavento90034832018-05-30 10:10:31 -040067 case ${COMPILER} in
Davide Pesavento3bafe502019-09-26 18:20:30 -040068 g++-[567]|clang++-[3456].*)
Davide Pesavento80017002019-03-18 19:04:34 -040069 ;;
70 g++-*)
Davide Pesavento90034832018-05-30 10:10:31 -040071 travis_retry sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
72 travis_retry sudo apt-get -qq update
Davide Pesavento90034832018-05-30 10:10:31 -040073 ;;
74 clang++-*)
Davide Pesavento3bafe502019-09-26 18:20:30 -040075 LLVM_REPO=${COMPILER/clang++/llvm-toolchain-${TRAVIS_DIST}}
76 travis_retry wget -nv -O - "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
77 travis_retry sudo add-apt-repository -y "deb http://apt.llvm.org/${TRAVIS_DIST}/ ${LLVM_REPO%-10} main"
Davide Pesavento90034832018-05-30 10:10:31 -040078 travis_retry sudo apt-get -qq update
Davide Pesavento90034832018-05-30 10:10:31 -040079 ;;
80 esac
81
Davide Pesavento3bafe502019-09-26 18:20:30 -040082install:
83 - if [[ -n ${COMPILER} ]]; then travis_retry sudo apt-get -qy install "${COMPILER/clang++/clang}"; fi
84
Davide Pesavento90034832018-05-30 10:10:31 -040085before_script:
Davide Pesavento3bafe502019-09-26 18:20:30 -040086 - if [[ ${TRAVIS_OS_NAME} == linux ]]; then export NODE_LABELS="Linux Ubuntu Ubuntu-18.04"; fi
Davide Pesavento90034832018-05-30 10:10:31 -040087 - if [[ ${TRAVIS_OS_NAME} == osx ]]; then export NODE_LABELS="OSX OSX-${OSX_VERSION}"; fi
Davide Pesavento80017002019-03-18 19:04:34 -040088 - if [[ ${OSX_VERSION} == 10.12 ]]; then brew update; fi
89 # workaround for https://github.com/Homebrew/homebrew-core/issues/26358
90 - if [[ ${OSX_VERSION} == 10.12 ]]; then brew outdated python || brew upgrade python; fi
91 # workaround for https://github.com/travis-ci/travis-ci/issues/6688
92 - if [[ ${OSX_VERSION} == 10.12 ]]; then /usr/bin/yes | pip2 uninstall numpy || true; fi
Davide Pesavento90034832018-05-30 10:10:31 -040093 - if [[ -n ${COMPILER} ]]; then export CXX=${COMPILER}; fi
94 - ${CXX:-c++} --version
95 - python --version
96
Alexander Afanasyev41ea9182014-11-20 19:24:55 -080097script:
Alexander Afanasyev41ea9182014-11-20 19:24:55 -080098 - ./.jenkins