This will disable the sanitizer runs on travis. (#1523)

This commit is contained in:
Daniel Lemire 2021-03-26 13:51:39 -04:00 committed by GitHub
parent a6576f1d09
commit 99406266b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 24 deletions

View File

@ -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}"