From f18a440febe9dcc97f797fcf2d0d132638783ea3 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 5a6de5ab..c8271977 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 2fd4ed26..9f04a4f0 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 a8319212..e8977909 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 c9e2fcc1..c1bde11c 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 94c89fc7..60b2bbb1 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 6d07896c..06aeee40 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"