diff options
author | Joe Orton <jorton@apache.org> | 2019-11-12 16:09:03 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2019-11-12 16:09:03 +0100 |
commit | 7dffe41f44f478703d5b76e1fa15c36f5eb5d98d (patch) | |
tree | c8fc43a94c609ce71776e4fb33d50a4b574bd5e5 /.travis.yml | |
parent | Add buildconf option to force (rather than suppress) regeneration of (diff) | |
download | apache2-7dffe41f44f478703d5b76e1fa15c36f5eb5d98d.tar.xz apache2-7dffe41f44f478703d5b76e1fa15c36f5eb5d98d.zip |
Install PCRE v2 (10.x) by default, add a job testing with PCRE "v1" (8.x).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1869703 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index eab4913839..6f1b32f67a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,7 @@ addons: - libsystemd-dev - libnghttp2-dev - libjansson-dev + - libpcre2-dev matrix: include: @@ -42,6 +43,10 @@ matrix: env: CONFIG="--enable-mods-shared=reallyall --enable-maintainer-mode NOTEST_CFLAGS=-Werror CC=gcc-7" SKIP_TESTING=1 # ------------------------------------------------------------------------- + - name: Linux Ubuntu, PCRE 1, GCC 7 maintainer-mode w/-Werror + os: linux + env: CONFIG="--enable-mods-shared=reallyall --with-pcre=/usr/bin/pcre-config --enable-maintainer-mode NOTEST_CFLAGS=-Werror CC=gcc-7" + # ------------------------------------------------------------------------- - name: Linux Ubuntu, GCC 8 maintainer-mode w/-Werror env: CONFIG="--enable-mods-shared=reallyall --enable-maintainer-mode NOTEST_CFLAGS=-Werror CC=gcc-8" SKIP_TESTING=1 @@ -61,6 +66,7 @@ matrix: - libsystemd-dev - libnghttp2-dev - libjansson-dev + - libpcre2-dev # ------------------------------------------------------------------------- - name: Linux Ubuntu, Regenerate ap_expr os: linux |