From 0d86e64dfd6d45d583d4fcb1a3548e33cd7caa8a Mon Sep 17 00:00:00 2001 From: amd-jmacaran Date: Wed, 15 May 2024 14:01:31 -0400 Subject: [PATCH] Add support for triggering external CI builds --- .azuredevops/rocm-ci.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .azuredevops/rocm-ci.yml diff --git a/.azuredevops/rocm-ci.yml b/.azuredevops/rocm-ci.yml new file mode 100644 index 0000000..b82aa20 --- /dev/null +++ b/.azuredevops/rocm-ci.yml @@ -0,0 +1,40 @@ +resources: + repositories: + - repository: pipelines_repo + type: github + endpoint: ROCm + name: ROCm/ROCm + +variables: +- group: common +- template: /.azuredevops/variables-global.yml@pipelines_repo + +trigger: + batch: true + branches: + include: + - rocm + paths: + exclude: + - .github + - docs + - '.*.y*ml' + - LICENSE.txt + - README.txt + +pr: + autoCancel: true + branches: + include: + - rocm + paths: + exclude: + - .github + - docs + - '.*.y*ml' + - LICENSE.txt + - README.txt + drafts: false + +jobs: + - template: ${{ variables.CI_COMPONENT_PATH }}/half.yml@pipelines_repo