Hi,
Le 08/11/2019 à 10:46, [email protected] a écrit :
Author: jorton
Date: Fri Nov 8 09:46:50 2019
New Revision: 1869533
URL: http://svn.apache.org/viewvc?rev=1869533&view=rev
Log:
Add Travis support for multiple APR/APR-util versions.
Add an APR build with --enable-pool-debug.
Modified:
httpd/httpd/trunk/.travis.yml
httpd/httpd/trunk/test/travis_before_linux.sh
httpd/httpd/trunk/test/travis_run_linux.sh
Modified: httpd/httpd/trunk/.travis.yml
URL:
http://svn.apache.org/viewvc/httpd/httpd/trunk/.travis.yml?rev=1869533&r1=1869532&r2=1869533&view=diff
==============================================================================
--- httpd/httpd/trunk/.travis.yml (original)
+++ httpd/httpd/trunk/.travis.yml Fri Nov 8 09:46:50 2019
@@ -4,6 +4,7 @@ os:
cache:
directories:
- /home/travis/perl5
+ - /home/travis/root
addons:
apt:
packages:
@@ -62,6 +63,16 @@ matrix:
- libnghttp2-dev
- libjansson-dev
#
-------------------------------------------------------------------------
+ - name: Linux Ubuntu, APR 1.7.0, APR-util 1.6.1
+ env: APR_VERSION=1.7.0 APU_VERSION=1.6.1
+ # -------------------------------------------------------------------------
+ - name: Linux Ubuntu, APR 1.7.0 --enable-pool-debug, APR-util 1.6.1
+ env: APR_VERSION=1.7.0 APR_CONFIG="--enable-pool-debug"
+ APU_VERSION=1.6.1
+ # -------------------------------------------------------------------------
+ - name: Linux Ubuntu, APR 1.5.1, APR-util 1.5.4
+ env: APR_VERSION=1.5.1 APU_VERSION=1.5.4
+ # -------------------------------------------------------------------------
Any particular reason to stick to APR 1.5.1 instead of 1.5.2?
CJ