[CI] Add optional image input to GB200 nightly workflow_dispatch (#22745)
Co-authored-by: ishandhanani <82981111+ishandhanani@users.noreply.github.com>
This commit is contained in:
co-authored by
ishandhanani
parent
b10f852118
commit
7c1bde2e38
@@ -7,6 +7,11 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: '0 2 * * *' # 2 AM UTC daily (offset from other nightly runs)
|
- cron: '0 2 * * *' # 2 AM UTC daily (offset from other nightly runs)
|
||||||
workflow_dispatch: # allow manual trigger; gated by gb200-ci environment
|
workflow_dispatch: # allow manual trigger; gated by gb200-ci environment
|
||||||
|
inputs:
|
||||||
|
image:
|
||||||
|
description: 'SGLang Docker image to benchmark'
|
||||||
|
required: false
|
||||||
|
default: 'lmsysorg/sglang:dev-cu13'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: nightly-test-gb200
|
group: nightly-test-gb200
|
||||||
@@ -54,7 +59,7 @@ jobs:
|
|||||||
squash_file: ${{ steps.import.outputs.squash_file }}
|
squash_file: ${{ steps.import.outputs.squash_file }}
|
||||||
nginx_squash_file: ${{ steps.import.outputs.nginx_squash_file }}
|
nginx_squash_file: ${{ steps.import.outputs.nginx_squash_file }}
|
||||||
env:
|
env:
|
||||||
IMAGE: lmsysorg/sglang:dev-cu13
|
IMAGE: ${{ inputs.image || 'lmsysorg/sglang:dev-cu13' }}
|
||||||
NGINX_IMAGE: nginx:1.27.4
|
NGINX_IMAGE: nginx:1.27.4
|
||||||
steps:
|
steps:
|
||||||
- name: Import Docker images to Lustre
|
- name: Import Docker images to Lustre
|
||||||
|
|||||||
Reference in New Issue
Block a user