diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-27 11:46:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-27 11:46:59 (GMT) |
commit | 7e9d706fd6e2f49d2bd829890c46868105767769 (patch) | |
tree | a3a92320cba70428bcccb55628792edaa1f819dc /.travis.yml | |
parent | 7fe81ce47ff6725e2e4d667d499e23dac19834af (diff) | |
download | cpython-7e9d706fd6e2f49d2bd829890c46868105767769.zip cpython-7e9d706fd6e2f49d2bd829890c46868105767769.tar.gz cpython-7e9d706fd6e2f49d2bd829890c46868105767769.tar.bz2 |
bpo-33926: enable GDB tests on Travis CI (GH-14395)
(cherry picked from commit 667eaffb4e5d03bf8129773f79649c3befaa5b1a)
Co-authored-by: Jeroen Demeyer <J.Demeyer@UGent.be>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 02de997..d46f52c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,7 @@ env: - OPENSSL=1.1.1c - OPENSSL_DIR="$HOME/multissl/openssl/${OPENSSL}" - PATH="${OPENSSL_DIR}/bin:$PATH" - # Use -O3 because we don't use debugger on Travis-CI - - CFLAGS="-I${OPENSSL_DIR}/include -O3" + - CFLAGS="-I${OPENSSL_DIR}/include" - LDFLAGS="-L${OPENSSL_DIR}/lib" # Set rpath with env var instead of -Wl,-rpath linker flag # OpenSSL ignores LDFLAGS when linking bin/openssl @@ -43,6 +42,7 @@ matrix: addons: apt: packages: + - gdb - xvfb - name: "Documentation build" os: linux |