mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
### Description 1. remove QNN stages from the big packaging pipeline 2. Add publish nightly package in the current [QNN Nuget pipeline](https://dev.azure.com/aiinfra/Lotus/_builddefinitionId=1234]) ### Motivation and Context Reduce the complexity of the big Nuget packaging pipelines. --------- Co-authored-by: Yi Zhang <your@email.com>
31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
resources:
|
|
pipelines:
|
|
- pipeline: build
|
|
source: 'Zip-Nuget-Java-Nodejs Packaging Pipeline'
|
|
trigger:
|
|
branches:
|
|
include:
|
|
- main
|
|
- rel-*
|
|
branch: main
|
|
|
|
stages:
|
|
- template: templates/publish-nuget-steps.yml
|
|
parameters:
|
|
stage_name: 'Publish_NuGet_Packag_And_Report'
|
|
include_cpu_ep: true
|
|
download_artifacts_steps:
|
|
- download: build
|
|
displayName: 'Download Pipeline Artifact - Signed NuGet Package'
|
|
artifact: 'drop-signed-nuget-dml'
|
|
- script: move "$(Pipeline.Workspace)\build\drop-signed-nuget-dml\*" $(Build.BinariesDirectory)\nuget-artifact\final-package
|
|
|
|
- download: build
|
|
displayName: 'Download Pipeline Artifact - Signed NuGet Package'
|
|
artifact: 'drop-signed-nuget-Training-CPU'
|
|
- script: move "$(Pipeline.Workspace)\build\drop-signed-nuget-Training-CPU\*" $(Build.BinariesDirectory)\nuget-artifact\final-package
|
|
|
|
- download: build
|
|
displayName: 'Download Pipeline Artifact - Signed NuGet Package'
|
|
artifact: 'drop-signed-nuget-GPU'
|
|
- script: move "$(Pipeline.Workspace)\build\drop-signed-nuget-GPU\*" $(Build.BinariesDirectory)\nuget-artifact\final-package
|