travis: use VM not container for {L,A}SAN builds (#177)

As per https://github.com/travis-ci/travis-ci/issues/9033, container
based builds do not currently allow ptrace, which is used by LSAN and
ASAN.
pull/156/merge
David Drysdale 7 years ago committed by GitHub
parent 2ee16d7295
commit 28591f3da4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .travis.yml

@ -37,9 +37,11 @@ matrix:
- os: linux
compiler: clang
env: BUILD_TYPE=asan
sudo: true # ASAN requires ptrace which is disabled in containers (https://github.com/travis-ci/travis-ci/issues/9033)
- os: linux
compiler: clang
env: BUILD_TYPE=lsan
sudo: true # LSAN requires ptrace which is disabled in containers (https://github.com/travis-ci/travis-ci/issues/9033)
- os: linux
compiler: clang
env: BUILD_TYPE=analyse

Loading…
Cancel
Save