diff --git a/.travis.yml b/.travis.yml index 340321f59d..e6ad74c991 100644 --- a/.travis.yml +++ b/.travis.yml @@ -298,6 +298,19 @@ jobs: - libbrotli-dev - libzstd-dev - libssh2-1-dev + - env: + - T=events + - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8" + addons: + apt: + <<: *common_apt + packages: + - *common_packages + - lcov + - libpsl-dev + - libbrotli-dev + - libzstd-dev + - libssh2-1-dev - env: - T=distcheck - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8" diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh index 85afa96182..9a35affead 100755 --- a/scripts/travis/script.sh +++ b/scripts/travis/script.sh @@ -36,11 +36,17 @@ if [ "$T" = "coverage" ]; then fi if [ "$T" = "torture" ]; then + ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2 + make + tests="!TLS-SRP !FTP" + make "TFLAGS=-n --shallow=20 -t $tests" test-nonflaky +fi + +if [ "$T" = "events" ]; then ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2 make tests="!TLS-SRP" make "TFLAGS=-n -e $tests" test-nonflaky - make "TFLAGS=-n --shallow=40 -t $tests" test-nonflaky fi if [ "$T" = "debug" ]; then