ci: adding more nightly tests to bot bump workflows (#14928)
This commit is contained in:
@@ -59,10 +59,42 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
bash scripts/release/commit_and_pr_kernel_to_sglang.sh "$KERNEL_VERSION" "$BRANCH_NAME"
|
bash scripts/release/commit_and_pr_kernel_to_sglang.sh "$KERNEL_VERSION" "$BRANCH_NAME"
|
||||||
|
|
||||||
run-nightly-tests:
|
run-nightly-tests-nvidia:
|
||||||
needs: bump-kernel-version-to-sglang
|
needs: bump-kernel-version-to-sglang
|
||||||
if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true'
|
if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true'
|
||||||
uses: ./.github/workflows/nightly-test-nvidia.yml
|
uses: ./.github/workflows/nightly-test-nvidia.yml
|
||||||
with:
|
with:
|
||||||
ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }}
|
ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
|
run-nightly-tests-amd:
|
||||||
|
needs: bump-kernel-version-to-sglang
|
||||||
|
if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true'
|
||||||
|
uses: ./.github/workflows/nightly-test-amd.yml
|
||||||
|
with:
|
||||||
|
ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
run-nightly-tests-npu:
|
||||||
|
needs: bump-kernel-version-to-sglang
|
||||||
|
if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true'
|
||||||
|
uses: ./.github/workflows/nightly-test-npu.yml
|
||||||
|
with:
|
||||||
|
ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
run-pr-tests-xeon:
|
||||||
|
needs: bump-kernel-version-to-sglang
|
||||||
|
if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true'
|
||||||
|
uses: ./.github/workflows/pr-test-xeon.yml
|
||||||
|
with:
|
||||||
|
ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
run-pr-tests-xpu:
|
||||||
|
needs: bump-kernel-version-to-sglang
|
||||||
|
if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true'
|
||||||
|
uses: ./.github/workflows/pr-test-xpu.yml
|
||||||
|
with:
|
||||||
|
ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }}
|
||||||
|
secrets: inherit
|
||||||
|
|||||||
@@ -53,9 +53,37 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
bash scripts/release/commit_and_pr.sh "SGLang" "${{ github.event.inputs.new_version }}" "$BRANCH_NAME"
|
bash scripts/release/commit_and_pr.sh "SGLang" "${{ github.event.inputs.new_version }}" "$BRANCH_NAME"
|
||||||
|
|
||||||
run-nightly-tests:
|
run-nightly-tests-nvidia:
|
||||||
needs: bump-sglang-version
|
needs: bump-sglang-version
|
||||||
uses: ./.github/workflows/nightly-test-nvidia.yml
|
uses: ./.github/workflows/nightly-test-nvidia.yml
|
||||||
with:
|
with:
|
||||||
ref: ${{ needs.bump-sglang-version.outputs.branch_name }}
|
ref: ${{ needs.bump-sglang-version.outputs.branch_name }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
||||||
|
run-nightly-tests-amd:
|
||||||
|
needs: bump-sglang-version
|
||||||
|
uses: ./.github/workflows/nightly-test-amd.yml
|
||||||
|
with:
|
||||||
|
ref: ${{ needs.bump-sglang-version.outputs.branch_name }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
run-nightly-tests-npu:
|
||||||
|
needs: bump-sglang-version
|
||||||
|
uses: ./.github/workflows/nightly-test-npu.yml
|
||||||
|
with:
|
||||||
|
ref: ${{ needs.bump-sglang-version.outputs.branch_name }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
run-pr-tests-xeon:
|
||||||
|
needs: bump-sglang-version
|
||||||
|
uses: ./.github/workflows/pr-test-xeon.yml
|
||||||
|
with:
|
||||||
|
ref: ${{ needs.bump-sglang-version.outputs.branch_name }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
run-pr-tests-xpu:
|
||||||
|
needs: bump-sglang-version
|
||||||
|
uses: ./.github/workflows/pr-test-xpu.yml
|
||||||
|
with:
|
||||||
|
ref: ${{ needs.bump-sglang-version.outputs.branch_name }}
|
||||||
|
secrets: inherit
|
||||||
|
|||||||
@@ -9,6 +9,18 @@ on:
|
|||||||
paths:
|
paths:
|
||||||
- "python/sglang/version.py"
|
- "python/sglang/version.py"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
ref:
|
||||||
|
description: 'Git ref (branch, tag, or SHA) to test. If not provided, uses the default branch.'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: ''
|
||||||
|
job_filter:
|
||||||
|
description: 'Select which job to run (leave empty or "all" to run all jobs)'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: 'all'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: nightly-test-amd-${{ github.ref }}
|
group: nightly-test-amd-${{ github.ref }}
|
||||||
|
|||||||
@@ -9,6 +9,18 @@ on:
|
|||||||
paths:
|
paths:
|
||||||
- ".github/workflows/nightly-test-npu.yml"
|
- ".github/workflows/nightly-test-npu.yml"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
ref:
|
||||||
|
description: 'Git ref (branch, tag, or SHA) to test. If not provided, uses the default branch.'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: ''
|
||||||
|
job_filter:
|
||||||
|
description: 'Select which job to run (leave empty or "all" to run all jobs)'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: 'all'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: nightly-test-npu-${{ github.ref }}
|
group: nightly-test-npu-${{ github.ref }}
|
||||||
|
|||||||
@@ -6,6 +6,18 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
ref:
|
||||||
|
description: 'Git ref (branch, tag, or SHA) to test. If not provided, uses the default branch.'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: ''
|
||||||
|
job_filter:
|
||||||
|
description: 'Select which job to run (leave empty or "all" to run all jobs)'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: 'all'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: pr-test-xeon-${{ github.ref }}
|
group: pr-test-xeon-${{ github.ref }}
|
||||||
|
|||||||
@@ -6,6 +6,18 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
ref:
|
||||||
|
description: 'Git ref (branch, tag, or SHA) to test. If not provided, uses the default branch.'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: ''
|
||||||
|
job_filter:
|
||||||
|
description: 'Select which job to run (leave empty or "all" to run all jobs)'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: 'all'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: pr-test-xpu-${{ github.ref }}
|
group: pr-test-xpu-${{ github.ref }}
|
||||||
|
|||||||
Reference in New Issue
Block a user