ci: add Xcode 11 to Travis CI build matrix
Also reenable ASan on Linux with clang 9, it seems to be working now.
Change-Id: I65d3b6dc90303255f9cc16318d38aaa4d43efcfd
diff --git a/.travis.yml b/.travis.yml
index ed1741d..cdbd696 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,14 +32,14 @@
env: COMPILER=clang++-5.0
- os: linux
env: COMPILER=clang++-6.0
- # temporarily disable AddressSanitizer on clang-7 and later
+ # disable AddressSanitizer with clang 7 and 8
# due to https://bugs.llvm.org/show_bug.cgi?id=40808
- os: linux
env: COMPILER=clang++-7 DISABLE_ASAN=yes
- os: linux
env: COMPILER=clang++-8 DISABLE_ASAN=yes
- os: linux
- env: COMPILER=clang++-9 DISABLE_ASAN=yes
+ env: COMPILER=clang++-9
# macOS/clang
# https://docs.travis-ci.com/user/reference/osx/#macos-version
@@ -64,9 +64,15 @@
- os: osx
osx_image: xcode10.2
env: OSX_VERSION=10.14 USE_OPENSSL_1_1=yes
+ - os: osx
+ osx_image: xcode11
+ env: OSX_VERSION=10.14
+ - os: osx
+ osx_image: xcode11
+ env: OSX_VERSION=10.14 USE_OPENSSL_1_1=yes
allow_failures:
- - env: COMPILER=clang++-9 DISABLE_ASAN=yes
+ - env: COMPILER=clang++-9
fast_finish: true