blob: 7c63efd73f12fe5bf75b0aab11cfeef984fb3715 [file] [log] [blame]
Davide Pesavento560d2b92020-04-15 12:32:25 -04001version: ~> 1.0
Davide Pesavento90034832018-05-30 10:10:31 -04002language: cpp
Davide Pesavento560d2b92020-04-15 12:32:25 -04003os: linux
Davide Pesavento3bafe502019-09-26 18:20:30 -04004dist: bionic
Davide Pesavento560d2b92020-04-15 12:32:25 -04005
6arch:
7 - amd64
8 - arm64
9 - ppc64le
10 - s390x
11
Eric Newberry197590e2016-12-27 23:08:01 -070012env:
Davide Pesavento560d2b92020-04-15 12:32:25 -040013 - COMPILER=g++-7
14 - COMPILER=g++-9
15 - COMPILER=clang++-6.0
16 - COMPILER=clang++-9
Davide Pesavento90034832018-05-30 10:10:31 -040017
Davide Pesavento560d2b92020-04-15 12:32:25 -040018jobs:
Alexander Afanasyev3baef102016-08-01 14:21:47 -070019 include:
Davide Pesavento560d2b92020-04-15 12:32:25 -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 Pesavento90034832018-05-30 10:10:31 -040027
Davide Pesavento560d2b92020-04-15 12:32:25 -040028 # macOS
Davide Pesavento80017002019-03-18 19:04:34 -040029 - os: osx
30 osx_image: xcode9.4
Davide Pesavento560d2b92020-04-15 12:32:25 -040031 env: # default compiler
Davide Pesavento80017002019-03-18 19:04:34 -040032 - os: osx
33 osx_image: xcode10.1
Davide Pesavento560d2b92020-04-15 12:32:25 -040034 env: # default compiler
Davide Pesavento80017002019-03-18 19:04:34 -040035 - os: osx
Davide Pesavento3bafe502019-09-26 18:20:30 -040036 osx_image: xcode10.3
Davide Pesavento560d2b92020-04-15 12:32:25 -040037 env: # default compiler
Davide Pesavento3bafe502019-09-26 18:20:30 -040038 - os: osx
Davide Pesavento560d2b92020-04-15 12:32:25 -040039 osx_image: xcode11.3
40 env: # default compiler
Davide Pesavento90034832018-05-30 10:10:31 -040041
42 allow_failures:
Davide Pesavento560d2b92020-04-15 12:32:25 -040043 - env: COMPILER=clang++-11
Davide Pesavento90034832018-05-30 10:10:31 -040044
45 fast_finish: true
46
Davide Pesavento560d2b92020-04-15 12:32:25 -040047before_install:
48 - |
49 : Adding apt repositories
Davide Pesavento90034832018-05-30 10:10:31 -040050 case ${COMPILER} in
Davide Pesavento560d2b92020-04-15 12:32:25 -040051 g++-9)
52 # https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test/+packages
Davide Pesavento90034832018-05-30 10:10:31 -040053 travis_retry sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
54 travis_retry sudo apt-get -qq update
Davide Pesavento90034832018-05-30 10:10:31 -040055 ;;
Davide Pesavento560d2b92020-04-15 12:32:25 -040056 clang++-1?)
57 # https://apt.llvm.org/
Davide Pesavento3bafe502019-09-26 18:20:30 -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 Pesavento560d2b92020-04-15 12:32:25 -040060 travis_retry sudo add-apt-repository -y "deb http://apt.llvm.org/${TRAVIS_DIST}/ ${LLVM_REPO%-11} main"
Davide Pesavento90034832018-05-30 10:10:31 -040061 travis_retry sudo apt-get -qq update
Davide Pesavento90034832018-05-30 10:10:31 -040062 ;;
63 esac
64
Davide Pesavento3bafe502019-09-26 18:20:30 -040065install:
Davide Pesavento560d2b92020-04-15 12:32:25 -040066 - |
67 : Installing C++ compiler
68 if [[ -n ${COMPILER} ]]; then
69 travis_retry sudo apt-get -qy install ${COMPILER/clang++/clang}
70 fi
Davide Pesavento3bafe502019-09-26 18:20:30 -040071
Davide Pesavento90034832018-05-30 10:10:31 -040072before_script:
Davide Pesavento560d2b92020-04-15 12:32:25 -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 Pesavento90034832018-05-30 10:10:31 -040095 - ${CXX:-c++} --version
Davide Pesavento90034832018-05-30 10:10:31 -040096
Alexander Afanasyev41ea9182014-11-20 19:24:55 -080097script:
Alexander Afanasyev41ea9182014-11-20 19:24:55 -080098 - ./.jenkins