External CI: Add support for downstream build of rocpydecode (#645)

- When build of rocdecode completes, it will trigger rocpydecode job.
- Code structure follows other pipelines who have made similar changes.

[ROCm/rocdecode commit: ea63c7a165]
This commit is contained in:
Joseph Macaranas
2025-09-05 12:50:20 -04:00
committad av GitHub
förälder a59927ed54
incheckning 48beb819f2
+19 -5
Visa fil
@@ -1,13 +1,22 @@
variables:
- group: common
- template: /.azuredevops/variables-global.yml@pipelines_repo
parameters:
- name: pipelinesRepoRef
type: string
default: refs/heads/develop
- name: triggerDownstreamJobs
type: boolean
default: true
resources:
repositories:
- repository: pipelines_repo
type: github
endpoint: ROCm
name: ROCm/ROCm
variables:
- group: common
- template: /.azuredevops/variables-global.yml@pipelines_repo
ref: ${{ parameters.pipelinesRepoRef }}
trigger:
batch: true
@@ -40,5 +49,10 @@ pr:
- LICENSE
drafts: false
jobs:
stages:
- stage: rocDecode
jobs:
- template: ${{ variables.CI_COMPONENT_PATH }}/rocDecode.yml@pipelines_repo
parameters:
sparseCheckoutDir: ''
triggerDownstreamJobs: ${{ parameters.triggerDownstreamJobs }}