From ac3d2ca8c5f6a7a6955ea7926f4e3ce6cc48d129 Mon Sep 17 00:00:00 2001 From: Joseph Macaranas <145489236+amd-jmacaran@users.noreply.github.com> Date: Thu, 25 Apr 2024 14:41:30 -0400 Subject: [PATCH] Add support for external CI builds using Azure Pipelines (#62) * Add support for external CI builds using Azure Pipelines * Change token name to match IT-created token [ROCm/rocprofiler-register commit: 2b777139d38fad61f316190c952453d53f4d9d83] --- .../.azuredevops/rocm-ci.yml | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 projects/rocprofiler-register/.azuredevops/rocm-ci.yml diff --git a/projects/rocprofiler-register/.azuredevops/rocm-ci.yml b/projects/rocprofiler-register/.azuredevops/rocm-ci.yml new file mode 100644 index 0000000000..8f6f2242c8 --- /dev/null +++ b/projects/rocprofiler-register/.azuredevops/rocm-ci.yml @@ -0,0 +1,39 @@ +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: + - amd-mainline + - amd-staging + paths: + exclude: + - .github + - LICENSE + - README.md + - VERSION + +pr: + autoCancel: true + branches: + include: + - amd-staging + paths: + exclude: + - .github + - LICENSE + - README.md + - VERSION + drafts: false + +jobs: + - template: ${{ variables.CI_COMPONENT_PATH }}/rocprofiler-register.yml@pipelines_repo