[Workflow] Fix kernel release jobs skipped on push events (#22011)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
0a709cfe02
commit
5c082c307a
@@ -36,7 +36,7 @@ jobs:
|
|||||||
build-cu129-matrix:
|
build-cu129-matrix:
|
||||||
if: |
|
if: |
|
||||||
github.repository == 'sgl-project/sglang' &&
|
github.repository == 'sgl-project/sglang' &&
|
||||||
(github.event.inputs.target == 'all' || github.event.inputs.target == 'cu129')
|
(github.event_name == 'push' || github.event.inputs.target == 'all' || github.event.inputs.target == 'cu129')
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.10"]
|
python-version: ["3.10"]
|
||||||
@@ -135,7 +135,7 @@ jobs:
|
|||||||
build-cu130-matrix:
|
build-cu130-matrix:
|
||||||
if: |
|
if: |
|
||||||
github.repository == 'sgl-project/sglang' &&
|
github.repository == 'sgl-project/sglang' &&
|
||||||
(github.event.inputs.target == 'all' || github.event.inputs.target == 'cu130')
|
(github.event_name == 'push' || github.event.inputs.target == 'all' || github.event.inputs.target == 'cu130')
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.10"]
|
python-version: ["3.10"]
|
||||||
@@ -227,7 +227,7 @@ jobs:
|
|||||||
build-rocm-matrix:
|
build-rocm-matrix:
|
||||||
if: |
|
if: |
|
||||||
github.repository == 'sgl-project/sglang' &&
|
github.repository == 'sgl-project/sglang' &&
|
||||||
(github.event.inputs.target == 'all' || github.event.inputs.target == 'rocm700' || github.event.inputs.target == 'rocm720')
|
(github.event_name == 'push' || github.event.inputs.target == 'all' || github.event.inputs.target == 'rocm700' || github.event.inputs.target == 'rocm720')
|
||||||
runs-on: amd-docker-scale
|
runs-on: amd-docker-scale
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
@@ -362,7 +362,7 @@ jobs:
|
|||||||
build-musa43:
|
build-musa43:
|
||||||
if: |
|
if: |
|
||||||
github.repository == 'sgl-project/sglang' &&
|
github.repository == 'sgl-project/sglang' &&
|
||||||
(github.event.inputs.target == 'all' || github.event.inputs.target == 'musa43')
|
(github.event_name == 'push' || github.event.inputs.target == 'all' || github.event.inputs.target == 'musa43')
|
||||||
runs-on: kernel-build-node-musa
|
runs-on: kernel-build-node-musa
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
|||||||
Reference in New Issue
Block a user