Skip to content

Create onnxscript-release-dev.yml #2101

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .azure-pipelines/onnxscript-release-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
trigger: none
name: onnxscript-release-dev.$(Date:yyyyMMdd).$(Rev:r)
resources:
pipelines:
- pipeline: onnxscript-release-dev
source: onnxscript-release-dev
trigger: true
stages:
- stage: Python_Publishing_DML
dependsOn: []
jobs:
- job: Python_Publishing_DML
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rename

pool:
name: 'onnxruntime-Win-CPU-2022'
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use linux-latest

steps:
- download: onnxscript-release-dev
artifact: drop
- task: SFP.release-tasks.custom-build-release-task.EsrpRelease@8
displayName: 'ESRP Release'
inputs:
connectedservicename: esrprelease
keyvaultname: buildkeyvault
authcertname: '53d54d02-SSL-AutoRotate'
signcertname: '53d54d02-978d-4305-8572-583cf6711c4f'
clientid: '53d54d02-978d-4305-8572-583cf6711c4f'
contenttype: PyPi
folderlocation: '$(System.DefaultWorkingDirectory)/drop/drop'
Copy link
Preview

Copilot AI Mar 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Double-check if the repeated 'drop/drop' in folderlocation is correct or if it should be updated to a single occurrence.

Suggested change
folderlocation: '$(System.DefaultWorkingDirectory)/drop/drop'
folderlocation: '$(System.DefaultWorkingDirectory)/drop'

Copilot uses AI. Check for mistakes.

owners: 'justinchu@microsoft.com'
approvers: 'grama@microsoft.com'
mainpublisher: AIFrameworks
Loading