From 66b95abb96f6595d27330a60a98ec67b96899a42 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 16 Oct 2019 16:33:43 -0400 Subject: [PATCH] test Python 3.7, fix linux cache check --- .travis.yml | 4 ++-- src/travis/linux-x86_64-before-install.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 34f542d6..9c210a74 100644 --- a/.travis.yml +++ b/.travis.yml @@ -101,11 +101,11 @@ matrix: - PLATFORM=x86_64 - VMTYPE=test - os: linux - name: "Linux 64-bit - Python 3.8-dev Source Testing" + name: "Linux 64-bit - Python 3.7 Source Testing" dist: bionic language: python python: - - "3.8-dev" + - "3.7" env: - GAMOS=linux - PLATFORM=x86_64 diff --git a/src/travis/linux-x86_64-before-install.sh b/src/travis/linux-x86_64-before-install.sh index c21c8ab0..3fdee162 100755 --- a/src/travis/linux-x86_64-before-install.sh +++ b/src/travis/linux-x86_64-before-install.sh @@ -12,7 +12,7 @@ else SSLRESULT=$? PYVER=$(~/python/bin/python3 -V) PYRESULT=$? - if [[ "$SSLRESULT" != "0" ]] || [[ "$SSLVER" != "OpenSSL $BUILD_OPENSSL_VERSION "* ]] || [[ "$PYRESULT" != "0" ]] || [[ "$PYVER" != "Python $PYTHON_BUILD_VERSION "* ]]; then + if [[ "$SSLRESULT" != "0" ]] || [[ "$SSLVER" != "OpenSSL $BUILD_OPENSSL_VERSION "* ]] || [[ "$PYRESULT" != "0" ]] || [[ "$PYVER" != "Python $PYTHON_BUILD_VERSION" ]]; then echo "SSL Result: $SSLRESULT - SSL Ver: $SSLVER - Py Result: $PYRESULT - Py Ver: $PYVER" cd ~ rm -rf ssl