diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2020-04-12 23:04:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-12 22:04:25 -0500 |
commit | 84e3e6213d1de84893bd07c00e3616d420295511 (patch) | |
tree | db7776dab4a66e2f92e78b869320268ee70e01d9 | |
parent | 1e307e5e8aaa1f67f0654f9adb018b725481a481 (diff) | |
download | cryptography-84e3e6213d1de84893bd07c00e3616d420295511.tar.gz cryptography-84e3e6213d1de84893bd07c00e3616d420295511.tar.bz2 cryptography-84e3e6213d1de84893bd07c00e3616d420295511.zip |
Run tests on aarch64, ppc, and s390x (#5192)
* Run tests on aarch64, ppc, and s390x
* Update .travis.yml
* Try disabling it this way
* Update .travis.yml
* Update .travis.yml
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 86de8900..9ea9b952 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,11 +44,11 @@ matrix: - python: 3.8 env: TOXENV=py38 OPENSSL=1.1.0l - python: 2.7 - env: TOXENV=py27 OPENSSL=1.1.1d + env: TOXENV=py27 OPENSSL=1.1.1f - python: 3.8 - env: TOXENV=py38 OPENSSL=1.1.1d + env: TOXENV=py38 OPENSSL=1.1.1f - python: 3.8 - env: TOXENV=py38 OPENSSL=1.1.1d OPENSSL_CONFIG_FLAGS="no-engine no-rc2" + env: TOXENV=py38 OPENSSL=1.1.1f OPENSSL_CONFIG_FLAGS="no-engine no-rc2" - python: 3.8 env: TOXENV=py38 LIBRESSL=2.7.5 - python: 3.8 @@ -58,6 +58,20 @@ matrix: - python: 3.8 env: TOXENV=py38 LIBRESSL=3.0.2 + # Non-x86_64 builds - cache disabled because it's broken ATM + - python: 3.8 + env: TOXENV=py38 PIP_NO_CACHE_DIR=off + arch: arm64 + - python: 3.8 + env: TOXENV=py38 OPENSSL=1.1.1f PIP_NO_CACHE_DIR=off + arch: arm64 + - python: 3.8 + env: TOXENV=py38 PIP_NO_CACHE_DIR=off + arch: ppc64le + - python: 3.8 + env: TOXENV=py38 PIP_NO_CACHE_DIR=off + arch: s390x + - python: 2.7 services: docker env: TOXENV=py27 DOCKER=pyca/cryptography-runner-centos7 |