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
+2 -2
View File
@@ -42,8 +42,8 @@ on:
default: 'all' default: 'all'
concurrency: concurrency:
group: nightly-test-amd-${{ github.ref }} group: nightly-test-amd-${{ inputs.ref || github.ref }}
cancel-in-progress: true cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs: jobs:
# 2-GPU tests (TP=2) # 2-GPU tests (TP=2)
+2 -2
View File
@@ -18,8 +18,8 @@ on:
default: "" default: ""
concurrency: concurrency:
group: nightly-test-intel-${{ github.ref }} group: nightly-test-intel-${{ inputs.ref || github.ref }}
cancel-in-progress: true cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs: jobs:
# Placeholder for Intel GPU tests # Placeholder for Intel GPU tests
+2 -2
View File
@@ -23,8 +23,8 @@ on:
default: 'all' default: 'all'
concurrency: concurrency:
group: nightly-test-npu-${{ github.ref }} group: nightly-test-npu-${{ inputs.ref || github.ref }}
cancel-in-progress: true cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs: jobs:
nightly-1-npu-a3: nightly-1-npu-a3:
+2 -2
View File
@@ -45,8 +45,8 @@ on:
default: 'all' default: 'all'
concurrency: concurrency:
group: nightly-test-nvidia-${{ github.ref }} group: nightly-test-nvidia-${{ inputs.ref || github.ref }}
cancel-in-progress: true cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
env: env:
SGLANG_IS_IN_CI: true SGLANG_IS_IN_CI: true
+2 -2
View File
@@ -37,8 +37,8 @@ on:
type: boolean type: boolean
default: false default: false
concurrency: concurrency:
group: pr-test-amd-${{ github.ref }} group: pr-test-amd-${{ inputs.ref || github.ref }}
cancel-in-progress: true cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs: jobs:
call-gate: call-gate:
+2 -2
View File
@@ -20,8 +20,8 @@ on:
default: false default: false
concurrency: concurrency:
group: pr-test-npu-${{ github.ref }} group: pr-test-npu-${{ inputs.ref || github.ref }}
cancel-in-progress: true cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs: jobs:
# ==================== Check Changes ==================== # # ==================== Check Changes ==================== #
+1 -1
View File
@@ -20,7 +20,7 @@ on:
default: false default: false
concurrency: concurrency:
group: pr-test-xeon-${{ github.ref }} group: pr-test-xeon-${{ inputs.ref || github.ref }}
cancel-in-progress: false cancel-in-progress: false
jobs: jobs:
+2 -2
View File
@@ -20,8 +20,8 @@ on:
default: false default: false
concurrency: concurrency:
group: pr-test-xpu-${{ github.ref }} group: pr-test-xpu-${{ inputs.ref || github.ref }}
cancel-in-progress: true cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
jobs: jobs:
# ==================== Check Changes ==================== # # ==================== Check Changes ==================== #
+2 -2
View File
@@ -39,8 +39,8 @@ on:
default: false default: false
concurrency: concurrency:
group: pr-test-${{ github.ref }} group: pr-test-${{ inputs.ref || github.ref }}
cancel-in-progress: true cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
env: env:
SGLANG_IS_IN_CI: true SGLANG_IS_IN_CI: true