Files
cibuildwheel/examples/travis-ci-minimal.yml
T

34 lines
848 B
YAML
Raw Normal View History

language: python
jobs:
include:
# perform a linux build
- services: docker
2020-02-21 06:37:45 -05:00
# perform a linux ARMv8 build
- services: docker
2020-04-15 18:15:31 -07:00
arch: arm64
2020-02-21 06:37:45 -05:00
# 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
# and a windows build
- os: windows
language: shell
before_install:
- choco install python --version 3.8.0
- 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:
2020-06-24 09:54:55 +01:00
- python3 -m pip install cibuildwheel==1.5.0
script:
# build the wheels, put them into './wheelhouse'
2020-02-26 22:10:31 +00:00
- python3 -m cibuildwheel --output-dir wheelhouse