blob: c31d207f7a6292c25e4466b84b65a9f081d191d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/bin/bash -ex
if ! test -v SKIP_TESTING; then
# Use a rudimental retry workflow as workaround to svn export hanging for minutes.
# Travis automatically kills a build if one step takes more than 10 minutes without
# reporting any progress.
for i in {1..5}
do
timeout 60 svn export -q https://svn.apache.org/repos/asf/httpd/test/framework/trunk test/perl-framework
if [ $? -eq 0 ]; then break; else sleep 120; fi
done
fi
function install_apx() {
local name=$1
local version=$2
local root=https://svn.apache.org/repos/asf/apr/${name}
local prefix=${HOME}/root/${name}-${version}
local build=${HOME}/build/${name}-${version}
local config=$3
local buildconf=$4
case $version in
trunk) url=${root}/trunk ;;
*.x) url=${root}/branches/${version} ;;
*) url=${root}/tags/${version} ;;
esac
local revision=`svn info --show-item last-changed-revision ${url}`
# Blow away the cached install root if the revision does not
# match.
test -f ${prefix}/.revision-is-${revision} || rm -rf ${prefix}
if test -d ${prefix}; then
return 0
fi
svn export -q -r ${revision} ${url} ${build}
pushd $build
./buildconf ${buildconf}
./configure --prefix=${prefix} ${config}
make -j2
make install
popd
touch ${prefix}/.revision-is-${revision}
}
if test -v APR_VERSION; then
install_apx apr ${APR_VERSION} "${APR_CONFIG}"
APU_CONFIG="$APU_CONFIG --with-apr=$HOME/root/apr-${APR_VERSION}"
fi
if test -v APU_VERSION; then
install_apx apr-util ${APU_VERSION} "${APU_CONFIG}" --with-apr=$HOME/build/apr-${APR_VERSION}
fi
|