From 5549eb31658fbc3a3ccfcb053a6cebad5f13e1a0 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Fri, 21 Feb 2020 06:37:45 -0500 Subject: [PATCH] Update examples and CI.md --- CI.md | 2 ++ examples/travis-ci-minimal.yml | 9 +++++++++ 2 files changed, 11 insertions(+) diff --git a/CI.md b/CI.md index 3b43a2e6..009b902c 100644 --- a/CI.md +++ b/CI.md @@ -7,3 +7,5 @@ This is a summary of the Python versions and platforms covered by the different | Windows | TravisCI | Azure Pipelines | AppVeyor | Azure Pipelines | > ยน Python version not really pinned, but dependent on the (default) version of image used. + +In addition additional non-x86 architectures are covered on Travis CI using Python 3.5. diff --git a/examples/travis-ci-minimal.yml b/examples/travis-ci-minimal.yml index e71772b7..95b4a8d7 100644 --- a/examples/travis-ci-minimal.yml +++ b/examples/travis-ci-minimal.yml @@ -4,6 +4,15 @@ jobs: include: # perform a linux build - services: docker + # perform a linux ARMv8 build + - services: docker + arch: aarch64 + # perform a linux PPC64LE build + - services: docker + arch: ppc64le + # perform a linux S390X build + - services: docker + arch: s390x # and a mac build - os: osx language: shell