From 3793289608b8ed782af39dbeee331f2e4d92ed39 Mon Sep 17 00:00:00 2001 From: Binyang Li Date: Fri, 20 Dec 2024 16:05:13 -0800 Subject: [PATCH] trigger ci for release branches (#426) --- .azure-pipelines/integration-test-rocm.yml | 1 + .azure-pipelines/integration-test.yml | 1 + .azure-pipelines/multi-nodes-test.yml | 1 + .azure-pipelines/nccl-api-test.yaml | 1 + .azure-pipelines/ut.yml | 1 + .github/workflows/codeql-analysis.yml | 8 ++++++-- 6 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/integration-test-rocm.yml b/.azure-pipelines/integration-test-rocm.yml index 5a6de5aba..c82719779 100644 --- a/.azure-pipelines/integration-test-rocm.yml +++ b/.azure-pipelines/integration-test-rocm.yml @@ -1,5 +1,6 @@ trigger: - main +- release/* pr: branches: diff --git a/.azure-pipelines/integration-test.yml b/.azure-pipelines/integration-test.yml index 2fd4ed26e..9f04a4f01 100644 --- a/.azure-pipelines/integration-test.yml +++ b/.azure-pipelines/integration-test.yml @@ -1,5 +1,6 @@ trigger: - main +- release/* pr: branches: diff --git a/.azure-pipelines/multi-nodes-test.yml b/.azure-pipelines/multi-nodes-test.yml index a83192121..e8977909a 100644 --- a/.azure-pipelines/multi-nodes-test.yml +++ b/.azure-pipelines/multi-nodes-test.yml @@ -1,5 +1,6 @@ trigger: - main +- release/* # Do not run multi-nodes-test for PR, we can trigger it manually pr: none diff --git a/.azure-pipelines/nccl-api-test.yaml b/.azure-pipelines/nccl-api-test.yaml index c9e2fcc1c..c1bde11c8 100644 --- a/.azure-pipelines/nccl-api-test.yaml +++ b/.azure-pipelines/nccl-api-test.yaml @@ -5,6 +5,7 @@ pr: branches: include: - main + - release/* drafts: false jobs: diff --git a/.azure-pipelines/ut.yml b/.azure-pipelines/ut.yml index 94c89fc7b..60b2bbb18 100644 --- a/.azure-pipelines/ut.yml +++ b/.azure-pipelines/ut.yml @@ -5,6 +5,7 @@ pr: branches: include: - main + - release/* drafts: false jobs: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6d07896c0..06aeee407 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -2,9 +2,13 @@ name: "CodeQL" on: push: - branches: [ main ] + branches: + - main + - release/* pull_request: - branches: [ main ] + branches: + - main + - release/* schedule: - cron: "30 1 * * 1"