microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
.pipelines/wheels_win32.yml
17lines · modecode
| 1 | jobs: |
| 2 | - job: windows |
| 3 | timeoutInMinutes: 120 |
| 4 | pool: {name: 'onnxruntime-Win-CPU-2022'} |
| 5 | variables: |
| 6 | CIBW_BUILD: "cp3{8,9,10,11}-*amd64" |
| 7 | |
| 8 | steps: |
| 9 | - task: UsePythonVersion@0 |
| 10 | - script: | |
| 11 | python -m pip install --upgrade pip |
| 12 | pip install cibuildwheel |
| 13 | displayName: Install dependencies |
| 14 | - bash: cibuildwheel --platform windows --output-dir wheelhouse . |
| 15 | displayName: Build wheels |
| 16 | - task: PublishBuildArtifacts@1 |
| 17 | inputs: {pathtoPublish: 'wheelhouse'} |
| 18 | |