mirror of
https://github.com/ROCm/ROCm.git
synced 2026-01-09 22:58:17 -05:00
Changing default behaviour for PRs with tag-builds. Changing build system for some jobs based on execution time. Co-authored-by: abhimeda <abhinav.meda@amd.com> Co-authored-by: alexxu-amd <alex.xu@amd.com>
30 lines
631 B
YAML
30 lines
631 B
YAML
variables:
|
|
- group: common
|
|
- template: /.azuredevops/variables-global.yml@pipelines_repo
|
|
|
|
parameters:
|
|
- name: checkoutRef
|
|
type: string
|
|
default: refs/tags/$(LATEST_RELEASE_TAG)
|
|
|
|
resources:
|
|
repositories:
|
|
- repository: pipelines_repo
|
|
type: github
|
|
endpoint: ROCm
|
|
name: ROCm/ROCm
|
|
- repository: release_repo
|
|
type: github
|
|
endpoint: ROCm
|
|
name: ROCm/rocDecode
|
|
ref: ${{ parameters.checkoutRef }}
|
|
|
|
trigger: none
|
|
pr: none
|
|
|
|
jobs:
|
|
- template: ${{ variables.CI_COMPONENT_PATH }}/rocDecode.yml@pipelines_repo
|
|
parameters:
|
|
checkoutRepo: release_repo
|
|
checkoutRef: ${{ parameters.checkoutRef }}
|