blob: 63826744c7ad9b7aac32904f0cb6d6f383828298 [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
Davide Pesaventod653afa2020-07-01 22:35:25 -040045 osx_image: xcode11.6
46 env: # default compiler
47 - os: osx
48 osx_image: xcode12
49 env: # default compiler
Davide Pesavento9a659d02018-01-10 02:55:43 -050050
51 allow_failures:
Davide Pesaventob07d7a92020-05-13 23:30:07 -040052 - env: COMPILER=g++-5
53 - env: COMPILER=g++-6
54 - env: COMPILER=clang++-4.0
Davide Pesavento9fa6a782020-03-10 19:47:06 -040055 - env: COMPILER=clang++-11
Davide Pesavento9a659d02018-01-10 02:55:43 -050056
57 fast_finish: true
Davide Pesaventof085ed12017-06-30 14:59:52 -040058
Davide Pesavento9fa6a782020-03-10 19:47:06 -040059before_install:
60 - |
61 : Adding apt repositories
Davide Pesavento26ea1ac2018-05-10 20:20:03 -040062 case ${COMPILER} in
Davide Pesavento9fa6a782020-03-10 19:47:06 -040063 g++-9)
64 # https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test/+packages
Davide Pesavento26ea1ac2018-05-10 20:20:03 -040065 travis_retry sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
66 travis_retry sudo apt-get -qq update
Davide Pesavento26ea1ac2018-05-10 20:20:03 -040067 ;;
Davide Pesavento9fa6a782020-03-10 19:47:06 -040068 clang++-1?)
69 # https://apt.llvm.org/
Davide Pesaventocbef7b82019-10-09 00:15:13 -040070 LLVM_REPO=${COMPILER/clang++/llvm-toolchain-${TRAVIS_DIST}}
71 travis_retry wget -nv -O - "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
Davide Pesavento9fa6a782020-03-10 19:47:06 -040072 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 -040073 travis_retry sudo apt-get -qq update
Davide Pesavento26ea1ac2018-05-10 20:20:03 -040074 ;;
75 esac
76
Davide Pesaventocbef7b82019-10-09 00:15:13 -040077install:
Davide Pesavento9fa6a782020-03-10 19:47:06 -040078 - |
79 : Installing C++ compiler
80 if [[ -n ${COMPILER} ]]; then
81 travis_retry sudo apt-get -qy install ${COMPILER/clang++/clang}
82 fi
Davide Pesaventocbef7b82019-10-09 00:15:13 -040083
Davide Pesaventof085ed12017-06-30 14:59:52 -040084before_script:
Davide Pesavento9fa6a782020-03-10 19:47:06 -040085 - |
86 : Setting environment variables
87 if [[ -n ${COMPILER} ]]; then
88 export CXX=${COMPILER}
89 fi
90 case ${TRAVIS_OS_NAME} in
91 linux) export NODE_LABELS="Linux Ubuntu Ubuntu-18.04" ;;
92 osx) export NODE_LABELS="OSX OSX-$(sw_vers -productVersion | cut -d . -f -2)" ;;
93 esac
94 export WAF_JOBS=2
95 - |
96 : Enabling workarounds
97 case "${TRAVIS_CPU_ARCH},${COMPILER}" in
Davide Pesavento8a2907e2020-04-16 00:02:23 -040098 arm64,g++*)
99 # Avoid exceeding the per-job time limit
100 export JOB_NAME=limited-build
101 ;;
Davide Pesavento9fa6a782020-03-10 19:47:06 -0400102 ppc64le,g++-7)
103 # AddressSanitizer does not seem to be working
104 export DISABLE_ASAN=yes
105 ;;
106 *,clang++-8)
107 # https://bugs.llvm.org/show_bug.cgi?id=40808
108 export DISABLE_ASAN=yes
109 ;;
110 esac
Davide Pesaventof085ed12017-06-30 14:59:52 -0400111 - ${CXX:-c++} --version
112
Joao Pereiraef326da2015-05-27 18:27:40 -0400113script:
Joao Pereiraef326da2015-05-27 18:27:40 -0400114 - ./.jenkins