microsoft/onnxruntime-extensions

Public

mirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
62d8598b6b9fa462a440ade891017eaafd4bfaee

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.pipelines/wheels_win32.yml

17lines · modecode

1jobs:
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