Skip to content

Commit 23e439f

Browse files
committed
Use a newer version of apache in the travis tests
The other version seems to have disappeared from the mirror
1 parent 2fc5056 commit 23e439f

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.travis/apache_clang.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ export PATH=/usr/lib/llvm-3.4/bin:${WLLVM_HOME}:${PATH}
77
export LLVM_COMPILER=clang
88
export WLLVM_OUTPUT=WARNING
99

10-
wget http://apache.mirrors.pair.com//httpd/httpd-2.4.12.tar.gz
11-
tar xfz httpd-2.4.12.tar.gz
12-
mv httpd-2.4.12 apache_clang
10+
APACHE_VER=2.4.17
11+
12+
wget http://apache.mirrors.pair.com//httpd/httpd-${APACHE_VER}.tar.gz
13+
tar xfz httpd-${APACHE_VER}.tar.gz
14+
mv httpd-${APACHE_VER} apache_clang
1315
cd apache_clang
1416
CC=wllvm ./configure
1517
make

.travis/apache_dragonegg.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ export LLVM_DRAGONEGG_PLUGIN=/usr/lib/gcc/x86_64-linux-gnu/4.6/plugin/dragonegg.
1111

1212
export WLLVM_OUTPUT=WARNING
1313

14-
wget http://apache.mirrors.pair.com//httpd/httpd-2.4.12.tar.gz
15-
tar xfz httpd-2.4.12.tar.gz
16-
mv httpd-2.4.12 apache_dragonegg
14+
APACHE_VER=2.4.17
15+
16+
wget http://apache.mirrors.pair.com//httpd/httpd-${APACHE_VER}.tar.gz
17+
tar xfz httpd-${APACHE_VER}.tar.gz
18+
mv httpd-${APACHE_VER} apache_dragonegg
1719
cd apache_dragonegg
1820
CC=wllvm ./configure
1921
make

0 commit comments

Comments
 (0)