Use a different concurrency group for release branch testing (#16202)

This commit is contained in:
Kangyan-Zhou
2025-12-31 09:46:43 -08:00
committed by GitHub
parent 60d7279c46
commit d65ae0ec7a
9 changed files with 17 additions and 17 deletions

View File

@@ -42,8 +42,8 @@ on:
default: 'all'
concurrency:
group: nightly-test-amd-${{ github.ref }}
cancel-in-progress: true
group: nightly-test-amd-${{ inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs:
# 2-GPU tests (TP=2)

View File

@@ -18,8 +18,8 @@ on:
default: ""
concurrency:
group: nightly-test-intel-${{ github.ref }}
cancel-in-progress: true
group: nightly-test-intel-${{ inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs:
# Placeholder for Intel GPU tests

View File

@@ -23,8 +23,8 @@ on:
default: 'all'
concurrency:
group: nightly-test-npu-${{ github.ref }}
cancel-in-progress: true
group: nightly-test-npu-${{ inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs:
nightly-1-npu-a3:

View File

@@ -45,8 +45,8 @@ on:
default: 'all'
concurrency:
group: nightly-test-nvidia-${{ github.ref }}
cancel-in-progress: true
group: nightly-test-nvidia-${{ inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
env:
SGLANG_IS_IN_CI: true

View File

@@ -37,8 +37,8 @@ on:
type: boolean
default: false
concurrency:
group: pr-test-amd-${{ github.ref }}
cancel-in-progress: true
group: pr-test-amd-${{ inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs:
call-gate:

View File

@@ -20,8 +20,8 @@ on:
default: false
concurrency:
group: pr-test-npu-${{ github.ref }}
cancel-in-progress: true
group: pr-test-npu-${{ inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs:
# ==================== Check Changes ==================== #

View File

@@ -20,7 +20,7 @@ on:
default: false
concurrency:
group: pr-test-xeon-${{ github.ref }}
group: pr-test-xeon-${{ inputs.ref || github.ref }}
cancel-in-progress: false
jobs:

View File

@@ -20,8 +20,8 @@ on:
default: false
concurrency:
group: pr-test-xpu-${{ github.ref }}
cancel-in-progress: true
group: pr-test-xpu-${{ inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs:
# ==================== Check Changes ==================== #

View File

@@ -39,8 +39,8 @@ on:
default: false
concurrency:
group: pr-test-${{ github.ref }}
cancel-in-progress: true
group: pr-test-${{ inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
env:
SGLANG_IS_IN_CI: true