blob: 7c63efd73f12fe5bf75b0aab11cfeef984fb3715 [file] [log] [blame]
Davide Pesavento7393cb42020-04-09 22:03:22 -04001version: ~> 1.0
Davide Pesaventoee18cce2018-01-11 01:58:02 -05002language: cpp
Davide Pesavento7393cb42020-04-09 22:03:22 -04003os: linux
Davide Pesaventod2ef9a72019-09-26 00:43:14 -04004dist: bionic
Davide Pesavento7393cb42020-04-09 22:03:22 -04005
6arch:
7 - amd64
8 - arm64
9 - ppc64le
10 - s390x
11
Davide Pesavento2a7f32b2017-09-02 13:48:13 -040012env:
Davide Pesavento7393cb42020-04-09 22:03:22 -040013 - COMPILER=g++-7
14 - COMPILER=g++-9
15 - COMPILER=clang++-6.0
16 - COMPILER=clang++-9
Davide Pesavento2a7f32b2017-09-02 13:48:13 -040017
Davide Pesavento7393cb42020-04-09 22:03:22 -040018jobs:
Davide Pesavento2a7f32b2017-09-02 13:48:13 -040019 include:
Davide Pesavento7393cb42020-04-09 22:03:22 -040020 # Linux
21 - env: COMPILER=g++-8
22 - env: COMPILER=clang++-5.0
23 - env: COMPILER=clang++-7
24 - env: COMPILER=clang++-8
25 - env: COMPILER=clang++-10
26 - env: COMPILER=clang++-11
Davide Pesavento2a7f32b2017-09-02 13:48:13 -040027
Davide Pesavento7393cb42020-04-09 22:03:22 -040028 # macOS
Davide Pesavento7eaed5c2019-01-09 20:03:43 -050029 - os: osx
30 osx_image: xcode9.4
Davide Pesavento7393cb42020-04-09 22:03:22 -040031 env: # default compiler
Davide Pesavento7eaed5c2019-01-09 20:03:43 -050032 - os: osx
33 osx_image: xcode10.1
Davide Pesavento7393cb42020-04-09 22:03:22 -040034 env: # default compiler
Davide Pesavento58c07d12019-03-20 00:58:50 -040035 - os: osx
Davide Pesaventod2ef9a72019-09-26 00:43:14 -040036 osx_image: xcode10.3
Davide Pesavento7393cb42020-04-09 22:03:22 -040037 env: # default compiler
Davide Pesaventod2ef9a72019-09-26 00:43:14 -040038 - os: osx
Davide Pesavento7393cb42020-04-09 22:03:22 -040039 osx_image: xcode11.3
40 env: # default compiler
Davide Pesavento64cafaa2018-05-24 00:50:41 -040041
42 allow_failures:
Davide Pesavento7393cb42020-04-09 22:03:22 -040043 - env: COMPILER=clang++-11
Davide Pesavento64cafaa2018-05-24 00:50:41 -040044
45 fast_finish: true
46
Davide Pesavento7393cb42020-04-09 22:03:22 -040047before_install:
48 - |
49 : Adding apt repositories
Davide Pesavento64cafaa2018-05-24 00:50:41 -040050 case ${COMPILER} in
Davide Pesavento7393cb42020-04-09 22:03:22 -040051 g++-9)
52 # https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test/+packages
Davide Pesavento64cafaa2018-05-24 00:50:41 -040053 travis_retry sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
54 travis_retry sudo apt-get -qq update
Davide Pesavento64cafaa2018-05-24 00:50:41 -040055 ;;
Davide Pesavento7393cb42020-04-09 22:03:22 -040056 clang++-1?)
57 # https://apt.llvm.org/
Davide Pesaventod2ef9a72019-09-26 00:43:14 -040058 LLVM_REPO=${COMPILER/clang++/llvm-toolchain-${TRAVIS_DIST}}
59 travis_retry wget -nv -O - "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
Davide Pesavento7393cb42020-04-09 22:03:22 -040060 travis_retry sudo add-apt-repository -y "deb http://apt.llvm.org/${TRAVIS_DIST}/ ${LLVM_REPO%-11} main"
Davide Pesavento64cafaa2018-05-24 00:50:41 -040061 travis_retry sudo apt-get -qq update
Davide Pesavento64cafaa2018-05-24 00:50:41 -040062 ;;
63 esac
Davide Pesavento2a7f32b2017-09-02 13:48:13 -040064
Davide Pesaventod2ef9a72019-09-26 00:43:14 -040065install:
Davide Pesavento7393cb42020-04-09 22:03:22 -040066 - |
67 : Installing C++ compiler
68 if [[ -n ${COMPILER} ]]; then
69 travis_retry sudo apt-get -qy install ${COMPILER/clang++/clang}
70 fi
Davide Pesaventod2ef9a72019-09-26 00:43:14 -040071
Davide Pesavento2a7f32b2017-09-02 13:48:13 -040072before_script:
Davide Pesavento7393cb42020-04-09 22:03:22 -040073 - |
74 : Setting environment variables
75 if [[ -n ${COMPILER} ]]; then
76 export CXX=${COMPILER}
77 fi
78 case ${TRAVIS_OS_NAME} in
79 linux) export NODE_LABELS="Linux Ubuntu Ubuntu-18.04" ;;
80 osx) export NODE_LABELS="OSX OSX-$(sw_vers -productVersion | cut -d . -f -2)" ;;
81 esac
82 export WAF_JOBS=2
83 - |
84 : Enabling workarounds
85 case "${TRAVIS_CPU_ARCH},${COMPILER}" in
86 ppc64le,g++-7)
87 # AddressSanitizer does not seem to be working
88 export DISABLE_ASAN=yes
89 ;;
90 *,clang++-8)
91 # https://bugs.llvm.org/show_bug.cgi?id=40808
92 export DISABLE_ASAN=yes
93 ;;
94 esac
Davide Pesavento2a7f32b2017-09-02 13:48:13 -040095 - ${CXX:-c++} --version
Davide Pesavento2a7f32b2017-09-02 13:48:13 -040096
97script:
98 - ./.jenkins