diff options
author | Joe Orton <jorton@apache.org> | 2020-10-15 18:04:12 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2020-10-15 18:04:12 +0200 |
commit | 22274ab3e0b64a30912b19ff97124813916bae87 (patch) | |
tree | 8dcda2c8eb138f7b111a4135dab23068c5b93dc4 /.travis.yml | |
parent | *) mod_md: lowered the required minimal libcurl version from 7.50 to 7.29 (diff) | |
download | apache2-22274ab3e0b64a30912b19ff97124813916bae87.tar.xz apache2-22274ab3e0b64a30912b19ff97124813916bae87.zip |
Disable mod_http2 and mod_ssl_ct for prefork builds, since the former
shouldn't be used under prefork and the latter isn't tested at all.
Possibly related to infrequent prefork child segfaults under pool-debug.
e.g. https://travis-ci.org/github/apache/httpd/jobs/736044109
is a multi-threaded prefork child dying with both mod_h2 and mod_ssl_ct
threads active.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1882548 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 16febaaf05..d682cca4f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -240,7 +240,7 @@ jobs: - name: Linux Ubuntu, Shared MPMs (prefork), pool-debug, SSL/TLS variants env: APR_VERSION=1.7.0 APR_CONFIG="--enable-pool-debug" APU_VERSION=1.6.1 APU_CONFIG="--with-crypto --with-ldap" - CONFIG="--enable-mods-shared=reallyall --enable-mpms-shared=all --with-mpm=prefork" + CONFIG="--enable-mods-shared=reallyall --enable-mpms-shared=all --with-mpm=prefork --disable-http2 --disable-ssl-ct" TEST_MALLOC=1 TEST_SSL=1 # ------------------------------------------------------------------------- - name: Linux Ubuntu, APR 1.7.0, APR-util 1.6.1, pool-debug, LDAP |