blob: 8990ac787a63fe2299858280dfe885289fc1f188 [file] [log] [blame]
Davide Pesavento9fa6a782020-03-10 19:47:06 -04001version: ~> 1.0
Davide Pesavento9a659d02018-01-10 02:55:43 -05002language: cpp
Davide Pesavento9fa6a782020-03-10 19:47:06 -04003os: linux
Davide Pesaventocbef7b82019-10-09 00:15:13 -04004dist: bionic
Davide Pesavento9fa6a782020-03-10 19:47:06 -04005
6arch:
7 - amd64
8 - arm64
9 - ppc64le
10 - s390x
11
Eric Newberry9737aa82016-12-27 23:03:49 -070012env:
Davide Pesavento9fa6a782020-03-10 19:47:06 -040013 - COMPILER=g++-7
14 - COMPILER=g++-9
15 - COMPILER=clang++-6.0
16 - COMPILER=clang++-9
Davide Pesaventof085ed12017-06-30 14:59:52 -040017
Davide Pesavento9fa6a782020-03-10 19:47:06 -040018jobs:
Davide Pesavento4a1edc62016-05-03 18:03:19 +020019 include:
Davide Pesavento9fa6a782020-03-10 19:47:06 -040020 # Linux
Davide Pesaventob07d7a92020-05-13 23:30:07 -040021 - env: COMPILER=g++-5
22 - env: COMPILER=g++-6
Davide Pesavento9fa6a782020-03-10 19:47:06 -040023 - env: COMPILER=g++-8
Davide Pesaventob07d7a92020-05-13 23:30:07 -040024 - env: COMPILER=clang++-4.0
Davide Pesavento9fa6a782020-03-10 19:47:06 -040025 - env: COMPILER=clang++-5.0
26 - env: COMPILER=clang++-7
27 - env: COMPILER=clang++-8
28 - env: COMPILER=clang++-10
29 - env: COMPILER=clang++-11
Davide Pesaventof085ed12017-06-30 14:59:52 -040030
Davide Pesavento9fa6a782020-03-10 19:47:06 -040031 # macOS
Davide Pesavento302941e2018-07-21 18:55:56 -040032 - os: osx
33 osx_image: xcode9.4
Davide Pesavento9fa6a782020-03-10 19:47:06 -040034 env: # default compiler
Davide Pesavento88beb4d2018-09-11 18:14:18 -040035 - os: osx
Davide Pesavento162bdbb2018-11-06 16:00:44 -050036 osx_image: xcode10.1
Davide Pesavento9fa6a782020-03-10 19:47:06 -040037 env: # default compiler
Davide Pesaventoc16ec572019-03-18 18:40:48 -040038 - os: osx
Davide Pesaventocbef7b82019-10-09 00:15:13 -040039 osx_image: xcode10.3
Davide Pesavento9fa6a782020-03-10 19:47:06 -040040 env: # default compiler
Davide Pesaventoc1eb2fc2019-07-17 15:44:33 -040041 - os: osx
Davide Pesavento9fa6a782020-03-10 19:47:06 -040042 osx_image: xcode11.3
43 env: # default compiler
Davide Pesaventob07d7a92020-05-13 23:30:07 -040044 - os: osx
45 osx_image: xcode11.4
46 env: # default compiler
Davide Pesavento9a659d02018-01-10 02:55:43 -050047
48 allow_failures:
Davide Pesaventob07d7a92020-05-13 23:30:07 -040049 - env: COMPILER=g++-5
50 - env: COMPILER=g++-6
51 - env: COMPILER=clang++-4.0
Davide Pesavento9fa6a782020-03-10 19:47:06 -040052 - env: COMPILER=clang++-11
Davide Pesavento9a659d02018-01-10 02:55:43 -050053
54 fast_finish: true
Davide Pesaventof085ed12017-06-30 14:59:52 -040055
Davide Pesavento9fa6a782020-03-10 19:47:06 -040056before_install:
57 - |
58 : Adding apt repositories
Davide Pesavento26ea1ac2018-05-10 20:20:03 -040059 case ${COMPILER} in
Davide Pesavento9fa6a782020-03-10 19:47:06 -040060 g++-9)
61 # https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test/+packages
Davide Pesavento26ea1ac2018-05-10 20:20:03 -040062 travis_retry sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
63 travis_retry sudo apt-get -qq update
Davide Pesavento26ea1ac2018-05-10 20:20:03 -040064 ;;
Davide Pesavento9fa6a782020-03-10 19:47:06 -040065 clang++-1?)
66 # https://apt.llvm.org/
Davide Pesaventocbef7b82019-10-09 00:15:13 -040067 LLVM_REPO=${COMPILER/clang++/llvm-toolchain-${TRAVIS_DIST}}
68 travis_retry wget -nv -O - "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
Davide Pesavento9fa6a782020-03-10 19:47:06 -040069 travis_retry sudo add-apt-repository -y "deb http://apt.llvm.org/${TRAVIS_DIST}/ ${LLVM_REPO%-11} main"
Davide Pesavento26ea1ac2018-05-10 20:20:03 -040070 travis_retry sudo apt-get -qq update
Davide Pesavento26ea1ac2018-05-10 20:20:03 -040071 ;;
72 esac
73
Davide Pesaventocbef7b82019-10-09 00:15:13 -040074install:
Davide Pesavento9fa6a782020-03-10 19:47:06 -040075 - |
76 : Installing C++ compiler
77 if [[ -n ${COMPILER} ]]; then
78 travis_retry sudo apt-get -qy install ${COMPILER/clang++/clang}
79 fi
Davide Pesaventocbef7b82019-10-09 00:15:13 -040080
Davide Pesaventof085ed12017-06-30 14:59:52 -040081before_script:
Davide Pesavento9fa6a782020-03-10 19:47:06 -040082 - |
83 : Setting environment variables
84 if [[ -n ${COMPILER} ]]; then
85 export CXX=${COMPILER}
86 fi
87 case ${TRAVIS_OS_NAME} in
88 linux) export NODE_LABELS="Linux Ubuntu Ubuntu-18.04" ;;
89 osx) export NODE_LABELS="OSX OSX-$(sw_vers -productVersion | cut -d . -f -2)" ;;
90 esac
91 export WAF_JOBS=2
92 - |
93 : Enabling workarounds
94 case "${TRAVIS_CPU_ARCH},${COMPILER}" in
Davide Pesavento8a2907e2020-04-16 00:02:23 -040095 arm64,g++*)
96 # Avoid exceeding the per-job time limit
97 export JOB_NAME=limited-build
98 ;;
Davide Pesavento9fa6a782020-03-10 19:47:06 -040099 ppc64le,g++-7)
100 # AddressSanitizer does not seem to be working
101 export DISABLE_ASAN=yes
102 ;;
103 *,clang++-8)
104 # https://bugs.llvm.org/show_bug.cgi?id=40808
105 export DISABLE_ASAN=yes
106 ;;
107 esac
Davide Pesaventof085ed12017-06-30 14:59:52 -0400108 - ${CXX:-c++} --version
109
Joao Pereiraef326da2015-05-27 18:27:40 -0400110script:
Joao Pereiraef326da2015-05-27 18:27:40 -0400111 - ./.jenkins