microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
79a348d2e840b66c1e4caa6d86546bf22fa72b4d

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