Files
cibuildwheel/examples/circleci-minimal.yml
T

39 lines
823 B
YAML
Raw Normal View History

version: 2
jobs:
linux-wheels:
working_directory: ~/linux-wheels
docker:
- image: circleci/python:3.6
steps:
- checkout
- setup_remote_docker
- run:
name: Build the Linux wheels.
command: |
2021-05-01 18:24:56 +01:00
pip3 install --user cibuildwheel==1.11.0
cibuildwheel --output-dir wheelhouse
- store_artifacts:
path: wheelhouse/
osx-wheels:
working_directory: ~/osx-wheels
macos:
2020-11-22 14:55:04 +01:00
xcode: 10.0.0
steps:
- checkout
- run:
name: Build the OS X wheels.
command: |
2021-05-01 18:24:56 +01:00
pip3 install cibuildwheel==1.11.0
cibuildwheel --output-dir wheelhouse
- store_artifacts:
path: wheelhouse/
workflows:
version: 2
all-tests:
jobs:
- linux-wheels
- osx-wheels