summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2018-05-16 23:01:15 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2018-05-16 23:05:24 -0400
commit421ea3d155a1b072bcf31d51ee37a7a6a8051494 (patch)
treeab167324f45c94948e990fb260563682f1e65f48 /tests
parent3a9e2ab6cfa804d8d100d44054be7b417b420002 (diff)
downloadpycurl-421ea3d155a1b072bcf31d51ee37a7a6a8051494.tar.gz
Test openssl 1.0 and 1.1 on travis
Diffstat (limited to 'tests')
-rwxr-xr-xtests/travis/setup.sh21
1 files changed, 11 insertions, 10 deletions
diff --git a/tests/travis/setup.sh b/tests/travis/setup.sh
index 11f7ab2..799b0ff 100755
--- a/tests/travis/setup.sh
+++ b/tests/travis/setup.sh
@@ -18,12 +18,13 @@ wget_once() {
}
file_host=https://github.com/pycurl/deps/raw/master
+distro=trusty
(cd &&
mkdir -p opt &&
cd opt &&
- wget $file_host/bin-precise-64.tar.xz &&
- tar xfJ bin-precise-64.tar.xz)
+ wget $file_host/bin-$distro-64.tar.xz &&
+ tar xfJ bin-$distro-64.tar.xz)
export PATH=~/opt/bin:$PATH
@@ -33,8 +34,8 @@ if test -n "$USEPY"; then
pip install -r requirements-dev.txt
(cd && mkdir -p opt && cd opt &&
- wget $file_host/python-"$USEPY"-precise-64.tar.xz &&
- tar xfJ python-"$USEPY"-precise-64.tar.xz)
+ wget $file_host/python-"$USEPY"-$distro-64.tar.xz &&
+ tar xfJ python-"$USEPY"-$distro-64.tar.xz)
export PATH=$HOME/opt/python-$USEPY/bin:$PATH
mkdir archives && (
@@ -94,17 +95,17 @@ if test -n "$USECURL"; then
if test -n "$USEOPENSSL"; then
(cd && mkdir -p opt && cd opt &&
- wget $file_host/openssl-"$USEOPENSSL"-precise-64.tar.xz &&
- tar xfJ openssl-"$USEOPENSSL"-precise-64.tar.xz)
+ wget $file_host/openssl-"$USEOPENSSL"-$distro-64.tar.xz &&
+ tar xfJ openssl-"$USEOPENSSL"-$distro-64.tar.xz)
fi
if test -n "$USELIBRESSL"; then
(cd && mkdir -p opt && cd opt &&
- wget $file_host/libressl-"$USELIBRESSL"-precise-64.tar.xz &&
- tar xfJ libressl-"$USELIBRESSL"-precise-64.tar.xz)
+ wget $file_host/libressl-"$USELIBRESSL"-$distro-64.tar.xz &&
+ tar xfJ libressl-"$USELIBRESSL"-$distro-64.tar.xz)
fi
if test -n "$USESSL"; then
- if test "$USESSL" != none; then
+ if test "$USESSL" != none && ! echo "$USECURL" |grep -q "$USESSL"; then
curldirname=curl-"$USECURL"-"$USESSL"$curl_suffix
else
curldirname=curl-"$USECURL"-none$curl_suffix
@@ -113,7 +114,7 @@ if test -n "$USECURL"; then
curldirname=curl-"$USECURL"$curl_suffix
fi
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/opt/$curldirname/lib
- name=$curldirname-precise-64.tar.xz
+ name=$curldirname-$distro-64.tar.xz
(cd &&
mkdir -p opt &&
cd opt &&