Files
cibuildwheel/examples/azure-pipelines-minimal.yml
T

43 lines
1.2 KiB
YAML
Raw Normal View History

jobs:
- job: linux
pool: {vmImage: 'Ubuntu-20.04'}
steps:
- task: UsePythonVersion@0
- bash: |
2020-11-13 14:57:09 +00:00
set -o errexit
2020-02-26 22:10:31 +00:00
python3 -m pip install --upgrade pip
2024-05-20 07:22:33 -04:00
pip3 install cibuildwheel==2.18.1
2020-11-14 14:33:58 +00:00
displayName: Install dependencies
- bash: cibuildwheel --output-dir wheelhouse .
displayName: Build wheels
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'wheelhouse'}
- job: macos
2022-07-17 14:31:45 -04:00
pool: {vmImage: 'macOS-11'}
steps:
- task: UsePythonVersion@0
2020-11-14 14:33:58 +00:00
- bash: |
2020-11-13 14:57:09 +00:00
set -o errexit
2020-02-26 22:10:31 +00:00
python3 -m pip install --upgrade pip
2024-05-20 07:22:33 -04:00
python3 -m pip install cibuildwheel==2.18.1
2020-11-14 14:33:58 +00:00
displayName: Install dependencies
- bash: cibuildwheel --output-dir wheelhouse .
displayName: Build wheels
- task: PublishBuildArtifacts@1
2020-11-13 19:20:16 +00:00
inputs: {pathtoPublish: wheelhouse}
- job: windows
2022-02-22 14:26:51 -08:00
pool: {vmImage: 'windows-2019'}
steps:
- task: UsePythonVersion@0
- bash: |
2020-11-13 14:57:09 +00:00
set -o errexit
python -m pip install --upgrade pip
2024-05-20 07:22:33 -04:00
pip install cibuildwheel==2.18.1
2020-11-14 14:33:58 +00:00
displayName: Install dependencies
- bash: cibuildwheel --output-dir wheelhouse .
displayName: Build wheels
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'wheelhouse'}