This will disable the sanitizer runs on travis. (#1523)
This commit is contained in:
parent
a6576f1d09
commit
99406266b1
50
.travis.yml
50
.travis.yml
|
@ -48,17 +48,18 @@ matrix:
|
||||||
- COMPILER="CC=gcc-10 && CXX=g++-10"
|
- COMPILER="CC=gcc-10 && CXX=g++-10"
|
||||||
compiler: gcc-10
|
compiler: gcc-10
|
||||||
|
|
||||||
- os: linux
|
# The sanitizer runs fail systematically
|
||||||
addons:
|
# - os: linux
|
||||||
apt:
|
# addons:
|
||||||
sources:
|
# apt:
|
||||||
- ubuntu-toolchain-r-test
|
# sources:
|
||||||
packages:
|
# - ubuntu-toolchain-r-test
|
||||||
- g++-10
|
# packages:
|
||||||
env:
|
# - g++-10
|
||||||
- COMPILER="CC=gcc-10 && CXX=g++-10"
|
# env:
|
||||||
- SANITIZE="on"
|
# - COMPILER="CC=gcc-10 && CXX=g++-10"
|
||||||
compiler: gcc-10-sanitize
|
# - SANITIZE="on"
|
||||||
|
# compiler: gcc-10-sanitize
|
||||||
|
|
||||||
- os: linux
|
- os: linux
|
||||||
addons:
|
addons:
|
||||||
|
@ -143,19 +144,20 @@ matrix:
|
||||||
- STATIC="on"
|
- STATIC="on"
|
||||||
compiler: clang-10-static
|
compiler: clang-10-static
|
||||||
|
|
||||||
- os: linux
|
# The clang sanitizer runs fail frequently at setup time
|
||||||
addons:
|
# - os: linux
|
||||||
apt:
|
# addons:
|
||||||
packages:
|
# apt:
|
||||||
- clang-10
|
# packages:
|
||||||
sources:
|
# - clang-10
|
||||||
- ubuntu-toolchain-r-test
|
# sources:
|
||||||
- sourceline: 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main'
|
# - ubuntu-toolchain-r-test
|
||||||
key_url: 'https://apt.llvm.org/llvm-snapshot.gpg.key'
|
# - sourceline: 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main'
|
||||||
env:
|
# key_url: 'https://apt.llvm.org/llvm-snapshot.gpg.key'
|
||||||
- COMPILER="CC=clang-10 && CXX=clang++-10"
|
# env:
|
||||||
- SANITIZE="on"
|
# - COMPILER="CC=clang-10 && CXX=clang++-10"
|
||||||
compiler: clang-10-sanitize
|
# - SANITIZE="on"
|
||||||
|
# compiler: clang-10-sanitize
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- eval "${COMPILER}"
|
- eval "${COMPILER}"
|
||||||
|
|
Loading…
Reference in New Issue