microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
b7b8816dab43f095079c5c7609764c702e3c6e49

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: {vmImage: 'windows-latest', name: 'Win-CPU-2021'}
5 variables:
6 CIBW_BUILD: "cp3{7,8,9,10}-*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