Use a different concurrency group for release branch testing (#16202)
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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:
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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:
|
||||||
|
|||||||
@@ -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 ==================== #
|
||||||
|
|||||||
@@ -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:
|
||||||
|
|||||||
@@ -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 ==================== #
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user