aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh10
-rwxr-xr-x.travis/run.sh4
2 files changed, 3 insertions, 11 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index b05ff7be..cdfbace6 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -57,14 +57,8 @@ else
pyenv install "pypy-$PYPY_VERSION"
pyenv global "pypy-$PYPY_VERSION"
fi
- if [[ "${OPENSSL}" == "0.9.8" ]]; then
- # We use 0.9.8l rather than zh because we have some branches for
- # handling < 0.9.8m that won't be exercised with a newer OpenSSL.
- # (RHEL5 is 0.9.8e with patches, but while that's in jenkins we don't
- # get coverage data from it).
- OPENSSL_VERSION_NUMBER="0.9.8l"
- OPENSSL_DIR="ossl-098l"
- elif [[ "${OPENSSL}" == "1.0.0" ]]; then
+
+ if [[ "${OPENSSL}" == "1.0.0" ]]; then
OPENSSL_VERSION_NUMBER="1.0.0t"
OPENSSL_DIR="ossl-100t"
fi
diff --git a/.travis/run.sh b/.travis/run.sh
index 9619c24a..5c8b53f9 100755
--- a/.travis/run.sh
+++ b/.travis/run.sh
@@ -26,9 +26,7 @@ else
PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
fi
- if [[ "${OPENSSL}" == "0.9.8" ]]; then
- OPENSSL_DIR="ossl-098l"
- elif [[ "${OPENSSL}" == "1.0.0" ]]; then
+ if [[ "${OPENSSL}" == "1.0.0" ]]; then
OPENSSL_DIR="ossl-100t"
fi