blob: 16eb7b6ba4175dde0e7e6bb0cd22e9e4e138eb92 [file] [log] [blame]
Davide Pesavento56c68a32020-03-12 19:26:21 -04001version: ~> 1.0
Davide Pesavento167040a2018-01-10 02:41:50 -05002language: cpp
Davide Pesavento56c68a32020-03-12 19:26:21 -04003os: linux
Davide Pesavento4bd4f712019-10-09 01:02:45 -04004dist: bionic
Davide Pesavento56c68a32020-03-12 19:26:21 -04005
6arch:
7 - amd64
8 #- arm64 # Too slow, exceeds time limit
9 #- ppc64le # Fails transport tests
10 #- s390x # Fails transport tests
11
Alexander Afanasyev6602b3b2016-03-15 14:14:11 -070012env:
Davide Pesavento56c68a32020-03-12 19:26:21 -040013 - COMPILER=g++-7
14 - COMPILER=g++-9
15 - COMPILER=clang++-6.0
16 - COMPILER=clang++-9
Davide Pesavento9ac95d32017-07-01 01:51:37 -040017
Davide Pesavento56c68a32020-03-12 19:26:21 -040018jobs:
Alexander Afanasyev6602b3b2016-03-15 14:14:11 -070019 include:
Davide Pesavento56c68a32020-03-12 19:26:21 -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 Pesavento9ac95d32017-07-01 01:51:37 -040027
Davide Pesavento56c68a32020-03-12 19:26:21 -040028 # macOS
Davide Pesaventod657d532018-06-26 22:41:28 -040029 - os: osx
30 osx_image: xcode9.4
Davide Pesavento56c68a32020-03-12 19:26:21 -040031 env: # default compiler
Davide Pesavento69692ab2018-09-11 18:11:23 -040032 - os: osx
Davide Pesavento5e1124c2018-11-06 14:40:50 -050033 osx_image: xcode10.1
Davide Pesavento56c68a32020-03-12 19:26:21 -040034 env: # default compiler
Davide Pesavento3626b592019-03-20 01:38:09 -040035 - os: osx
Davide Pesavento4bd4f712019-10-09 01:02:45 -040036 osx_image: xcode10.3
Davide Pesavento56c68a32020-03-12 19:26:21 -040037 env: # default compiler
Davide Pesaventod2148812019-07-17 16:38:10 -040038 - os: osx
Davide Pesavento56c68a32020-03-12 19:26:21 -040039 osx_image: xcode11.3
40 env: # default compiler
Davide Pesavento167040a2018-01-10 02:41:50 -050041
42 allow_failures:
Davide Pesavento56c68a32020-03-12 19:26:21 -040043 - env: COMPILER=clang++-11
Davide Pesavento167040a2018-01-10 02:41:50 -050044
45 fast_finish: true
Davide Pesavento9ac95d32017-07-01 01:51:37 -040046
Davide Pesavento56c68a32020-03-12 19:26:21 -040047before_install:
48 - |
49 : Adding apt repositories
Davide Pesavento5f35f642018-05-10 19:36:03 -040050 case ${COMPILER} in
Davide Pesavento56c68a32020-03-12 19:26:21 -040051 g++-9)
52 # https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test/+packages
Davide Pesavento5f35f642018-05-10 19:36:03 -040053 travis_retry sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
54 travis_retry sudo apt-get -qq update
Davide Pesavento5f35f642018-05-10 19:36:03 -040055 ;;
Davide Pesavento56c68a32020-03-12 19:26:21 -040056 clang++-1?)
57 # https://apt.llvm.org/
Davide Pesavento4bd4f712019-10-09 01:02:45 -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 Pesavento56c68a32020-03-12 19:26:21 -040060 travis_retry sudo add-apt-repository -y "deb http://apt.llvm.org/${TRAVIS_DIST}/ ${LLVM_REPO%-11} main"
Davide Pesavento5f35f642018-05-10 19:36:03 -040061 travis_retry sudo apt-get -qq update
Davide Pesavento5f35f642018-05-10 19:36:03 -040062 ;;
63 esac
64
Davide Pesavento4bd4f712019-10-09 01:02:45 -040065install:
Davide Pesavento56c68a32020-03-12 19:26:21 -040066 - |
67 : Installing C++ compiler
68 if [[ -n ${COMPILER} ]]; then
69 travis_retry sudo apt-get -qy install ${COMPILER/clang++/clang}
70 fi
Davide Pesavento4bd4f712019-10-09 01:02:45 -040071
Davide Pesavento9ac95d32017-07-01 01:51:37 -040072before_script:
Davide Pesavento56c68a32020-03-12 19:26:21 -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 JOB_NAME=limited-build
83 export WAF_JOBS=2
84 - |
85 : Enabling workarounds
86 case "${TRAVIS_CPU_ARCH},${COMPILER}" in
87 ppc64le,g++-7)
88 # AddressSanitizer does not seem to be working
89 export DISABLE_ASAN=yes
90 ;;
91 *,clang++-8)
92 # https://bugs.llvm.org/show_bug.cgi?id=40808
93 export DISABLE_ASAN=yes
94 ;;
95 esac
Davide Pesavento69857c32020-04-05 16:36:26 -040096 if [[ ${TRAVIS_OS_NAME} == linux ]]; then
Davide Pesavento56c68a32020-03-12 19:26:21 -040097 sudo sysctl -e -w net.ipv6.conf.all.disable_ipv6=0
98 fi
Davide Pesavento9ac95d32017-07-01 01:51:37 -040099 - ${CXX:-c++} --version
100
Yi Huang71929b32014-01-29 21:47:09 -0700101script:
Alexander Afanasyev4d4e7252014-10-25 12:21:53 -0700102 - ./.jenkins