microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
01d3905801f25bb0a159c4de6a5ae5120ca5c6a0

Branches

Tags

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

Clone

HTTPS

Download ZIP

.pipelines/wheels_win32.yml

17lines · modepreview

jobs:
- job: windows
  timeoutInMinutes: 120
  pool: {name: 'onnxruntime-Win-CPU-2022'}
  variables:
    CIBW_BUILD: "cp3{8,9,10,11}-*amd64"

  steps:
    - task: UsePythonVersion@0
    - script: |
        python -m pip install --upgrade pip
        pip install cibuildwheel
      displayName: Install dependencies
    - bash: cibuildwheel --platform windows --output-dir wheelhouse .
      displayName: Build wheels
    - task: PublishBuildArtifacts@1
      inputs: {pathtoPublish: 'wheelhouse'}