* Disable manylinux only tests on Travis CI ppc64le Those tests are taking too much disk space for the Travis CI runner right now. c.f. https://travis-ci.community/t/running-out-of-disk-space-quota-when-using-docker-on-ppc64le/11634 * Use focal to run aarch64/ppc64le/s390x jobs on Travis CI This removes allow_failures from the Travis CI s390x job * Use `focal` distribution for all Travis CI configurations * Revert "Disable manylinux only tests on Travis CI ppc64le" This reverts commit d0a09c689c058985c7dcb60b1e11a85a7bfce5e0. * Skip test_manylinuxXXXX_only on Travis CI ppc64le * Add a comment on why test_manylinuxXXXX_only test is skipped
33 lines
816 B
YAML
33 lines
816 B
YAML
os: linux
|
|
dist: focal
|
|
language: python
|
|
|
|
jobs:
|
|
include:
|
|
# perform a linux build
|
|
- services: docker
|
|
# perform a linux ARMv8 build
|
|
- services: docker
|
|
arch: arm64
|
|
# perform a linux PPC64LE build
|
|
- services: docker
|
|
arch: ppc64le
|
|
# perform a linux S390X build
|
|
- services: docker
|
|
arch: s390x
|
|
# and a windows build
|
|
- os: windows
|
|
language: shell
|
|
before_install:
|
|
- choco upgrade python -y --version 3.8.6
|
|
- export PATH="/c/Python38:/c/Python38/Scripts:$PATH"
|
|
# make sure it's on PATH as 'python3'
|
|
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
|
|
|
|
install:
|
|
- python3 -m pip install cibuildwheel==1.11.0
|
|
|
|
script:
|
|
# build the wheels, put them into './wheelhouse'
|
|
- python3 -m cibuildwheel --output-dir wheelhouse
|