blob: 7c63efd73f12fe5bf75b0aab11cfeef984fb3715 [file] [log] [blame]
Davide Pesaventod5537682020-04-18 01:20:25 -04001version: ~> 1.0
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -04002language: cpp
Davide Pesaventod5537682020-04-18 01:20:25 -04003os: linux
Davide Pesaventoc8681a32019-09-26 10:57:07 -04004dist: bionic
Davide Pesaventod5537682020-04-18 01:20:25 -04005
6arch:
7 - amd64
8 - arm64
9 - ppc64le
10 - s390x
11
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040012env:
Davide Pesaventod5537682020-04-18 01:20:25 -040013 - COMPILER=g++-7
14 - COMPILER=g++-9
15 - COMPILER=clang++-6.0
16 - COMPILER=clang++-9
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040017
Davide Pesaventod5537682020-04-18 01:20:25 -040018jobs:
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040019 include:
Davide Pesaventod5537682020-04-18 01:20: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
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040027
Davide Pesaventod5537682020-04-18 01:20:25 -040028 # macOS
Davide Pesavento8f9d0622018-11-27 01:23:37 -050029 - os: osx
30 osx_image: xcode9.4
Davide Pesaventod5537682020-04-18 01:20:25 -040031 env: # default compiler
Davide Pesavento8f9d0622018-11-27 01:23:37 -050032 - os: osx
33 osx_image: xcode10.1
Davide Pesaventod5537682020-04-18 01:20:25 -040034 env: # default compiler
Davide Pesavento6e90a0b2019-03-20 00:30:10 -040035 - os: osx
Davide Pesaventoc8681a32019-09-26 10:57:07 -040036 osx_image: xcode10.3
Davide Pesaventod5537682020-04-18 01:20:25 -040037 env: # default compiler
Davide Pesaventoc8681a32019-09-26 10:57:07 -040038 - os: osx
Davide Pesaventod5537682020-04-18 01:20:25 -040039 osx_image: xcode11.3
40 env: # default compiler
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040041
42 allow_failures:
Davide Pesaventod5537682020-04-18 01:20:25 -040043 - env: COMPILER=clang++-11
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040044
45 fast_finish: true
46
Davide Pesaventod5537682020-04-18 01:20:25 -040047before_install:
48 - |
49 : Adding apt repositories
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040050 case ${COMPILER} in
Davide Pesaventod5537682020-04-18 01:20:25 -040051 g++-9)
52 # https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test/+packages
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040053 travis_retry sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
54 travis_retry sudo apt-get -qq update
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040055 ;;
Davide Pesaventod5537682020-04-18 01:20:25 -040056 clang++-1?)
57 # https://apt.llvm.org/
Davide Pesaventoc8681a32019-09-26 10:57:07 -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 Pesaventod5537682020-04-18 01:20:25 -040060 travis_retry sudo add-apt-repository -y "deb http://apt.llvm.org/${TRAVIS_DIST}/ ${LLVM_REPO%-11} main"
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040061 travis_retry sudo apt-get -qq update
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040062 ;;
63 esac
64
Davide Pesaventoc8681a32019-09-26 10:57:07 -040065install:
Davide Pesaventod5537682020-04-18 01:20: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 Pesaventoc8681a32019-09-26 10:57:07 -040071
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040072before_script:
Davide Pesaventod5537682020-04-18 01:20: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
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040095 - ${CXX:-c++} --version
Alexander Afanasyev6e64ac92018-06-14 17:25:38 -040096
97script:
98 - ./.jenkins