This commit adds config options and identifiers for building manylinux wheels on non-x86 platforms. Based on what travis and manylinux2014 support this includes aarch64 (ARMv8), ppce64le (power pc 64bit little endian), and the s390x platforms. Fixes #269
52 lines
1.0 KiB
YAML
52 lines
1.0 KiB
YAML
language: generic
|
|
|
|
matrix:
|
|
include:
|
|
# Linux Python 3
|
|
- sudo: required
|
|
language: python
|
|
python: 3.5
|
|
services: docker
|
|
env: PYTHON=python
|
|
|
|
# Linux Python 3
|
|
- sudo: required
|
|
language: python
|
|
python: 3.5
|
|
services: docker
|
|
arch: arm64
|
|
env: PYTHON=python
|
|
|
|
# Linux Python 3
|
|
- sudo: required
|
|
language: python
|
|
python: 3.5
|
|
services: docker
|
|
arch: ppc64le
|
|
env: PYTHON=python
|
|
|
|
# Linux Python 3
|
|
- sudo: required
|
|
language: python
|
|
python: 3.5
|
|
services: docker
|
|
arch: s390x
|
|
env: PYTHON=python
|
|
|
|
# macOS Python 3
|
|
- os: osx
|
|
env: PYTHON=python3
|
|
|
|
- os: windows
|
|
language: shell
|
|
before_install:
|
|
- choco install python3 --version 3.5.4 --no-progress -y
|
|
install:
|
|
- C:\\Python35\\python -m pip install -r requirements-dev.txt
|
|
script:
|
|
- C:\\Python35\\python ./bin/run_tests.py
|
|
|
|
install: $PYTHON -m pip install -r requirements-dev.txt
|
|
|
|
script: $PYTHON ./bin/run_tests.py
|