-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New rocm nuget publish pipeline (#22418)
### Description Add a new pipeline to publish ROCM package to ADO ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> ### Test Link https://dev.azure.com/aiinfra/Lotus/_build?definitionId=1615
- Loading branch information
Showing
2 changed files
with
21 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
tools/ci_build/github/azure-pipelines/rocm-publish-nuget-pipeline.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
resources: | ||
pipelines: | ||
- pipeline: build | ||
source: 'Nuget ROCM Packaging pipeline' | ||
trigger: | ||
branches: | ||
include: | ||
- main | ||
- rel-* | ||
branch: main | ||
|
||
# ROCm | ||
stages: | ||
- template: templates/publish-nuget-steps.yml | ||
parameters: | ||
stage_name: 'Publish_ROCM_NuGet_Package' | ||
download_artifacts_steps: | ||
- download: build | ||
displayName: 'Download Pipeline Artifact - Signed NuGet Package' | ||
artifact: 'drop-signed-nuget-ROCm' | ||
- script: move "$(Pipeline.Workspace)\build\drop-signed-nuget-ROCm\*" $(Build.BinariesDirectory)\nuget-artifact\final-package |