From: Emilia Kasper Date: Fri, 26 Feb 2016 17:35:08 +0000 (+0100) Subject: Don't build sanitizer builds with --debug X-Git-Tag: OpenSSL_1_1_0-pre4~493 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=875856efd6a6f5d3e6f32661e0e50afcea5bcb62;ds=sidebyside Don't build sanitizer builds with --debug They're too slow. Reviewed-by: Rich Salz --- diff --git a/.travis.yml b/.travis.yml index cf8c4426ae..198a121208 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,13 +42,13 @@ matrix: env: CONFIG_OPTS="-fsanitize=address" - os: linux compiler: clang-3.6 - env: CONFIG_OPTS="no-asm --debug --strict-warnings -fno-sanitize-recover -fsanitize=address -fsanitize=undefined enable-crypto-mdebug enable-rc5 enable-md2" + env: CONFIG_OPTS="no-asm --strict-warnings -fno-sanitize-recover -fsanitize=address -fsanitize=undefined enable-crypto-mdebug enable-rc5 enable-md2" - os: linux compiler: gcc-5 env: CONFIG_OPTS="-fsanitize=address" - os: linux compiler: gcc-5 - env: CONFIG_OPTS="no-asm --debug --strict-warnings -fno-sanitize-recover -fsanitize=address -fsanitize=undefined enable-crypto-mdebug enable-rc5 enable-md2" + env: CONFIG_OPTS="no-asm --strict-warnings -fno-sanitize-recover -fsanitize=address -fsanitize=undefined enable-crypto-mdebug enable-rc5 enable-md2" - os: linux compiler: clang-3.6 env: CONFIG_OPTS="no-engine"