test Python 3.7, fix linux cache check

This commit is contained in:
Jay Lee
2019-10-16 16:33:43 -04:00
parent e2ef8a293d
commit 66b95abb96
2 changed files with 3 additions and 3 deletions

View File

@@ -101,11 +101,11 @@ matrix:
- PLATFORM=x86_64 - PLATFORM=x86_64
- VMTYPE=test - VMTYPE=test
- os: linux - os: linux
name: "Linux 64-bit - Python 3.8-dev Source Testing" name: "Linux 64-bit - Python 3.7 Source Testing"
dist: bionic dist: bionic
language: python language: python
python: python:
- "3.8-dev" - "3.7"
env: env:
- GAMOS=linux - GAMOS=linux
- PLATFORM=x86_64 - PLATFORM=x86_64

View File

@@ -12,7 +12,7 @@ else
SSLRESULT=$? SSLRESULT=$?
PYVER=$(~/python/bin/python3 -V) PYVER=$(~/python/bin/python3 -V)
PYRESULT=$? 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" echo "SSL Result: $SSLRESULT - SSL Ver: $SSLVER - Py Result: $PYRESULT - Py Ver: $PYVER"
cd ~ cd ~
rm -rf ssl rm -rf ssl