microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
.pipelines/wheels_linux.yml
18lines · modecode
| 1 | jobs: |
| 2 | - job: linux |
| 3 | timeoutInMinutes: 120 |
| 4 | pool: {name: 'Azure-Pipelines-EO-Ubuntu-2004-aiinfra'} |
| 5 | variables: |
| 6 | CIBW_BUILD: "cp3{7,8,9,10}-*" |
| 7 | |
| 8 | steps: |
| 9 | - task: UsePythonVersion@0 |
| 10 | - bash: | |
| 11 | set -o errexit |
| 12 | python3 -m pip install --upgrade pip |
| 13 | pip3 install cibuildwheel |
| 14 | displayName: Install dependencies |
| 15 | - bash: cibuildwheel --output-dir wheelhouse . |
| 16 | displayName: Build wheels |
| 17 | - task: PublishBuildArtifacts@1 |
| 18 | inputs: {pathtoPublish: 'wheelhouse'} |
| 19 | |