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_linux.yml

18lines · modecode

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