2021-05-23 21:34:07 +02:00
|
|
|
os: linux
|
|
|
|
|
dist: focal
|
2019-12-08 23:46:20 +01:00
|
|
|
language: python
|
2022-10-07 10:06:51 +01:00
|
|
|
python: "3.9"
|
2019-12-08 23:46:20 +01:00
|
|
|
|
|
|
|
|
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
|
2019-12-08 23:46:20 +01:00
|
|
|
# and a windows build
|
|
|
|
|
- os: windows
|
|
|
|
|
language: shell
|
|
|
|
|
before_install:
|
2021-04-22 14:47:18 -04:00
|
|
|
- choco upgrade python -y --version 3.8.6
|
2019-12-08 23:46:20 +01:00
|
|
|
- export PATH="/c/Python38:/c/Python38/Scripts:$PATH"
|
2020-03-06 10:30:16 +00:00
|
|
|
# make sure it's on PATH as 'python3'
|
|
|
|
|
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
|
2019-12-08 23:46:20 +01:00
|
|
|
|
|
|
|
|
install:
|
2024-05-20 07:22:33 -04:00
|
|
|
- python3 -m pip install cibuildwheel==2.18.1
|
2019-12-08 23:46:20 +01:00
|
|
|
|
|
|
|
|
script:
|
|
|
|
|
# build the wheels, put them into './wheelhouse'
|
2020-02-26 22:10:31 +00:00
|
|
|
- python3 -m cibuildwheel --output-dir wheelhouse
|