Remove flashinfer version argument from cu13 docker release workflow (#19862)

This commit is contained in:
Baizhou Zhang
2026-03-04 00:26:06 -08:00
committed by GitHub
parent 52dcade4aa
commit f07d668ba1
2 changed files with 0 additions and 17 deletions

View File

@@ -9,11 +9,6 @@ on:
version:
description: "Version to build (without v prefix, e.g., 0.5.8)"
required: true
flashinfer_version:
description: "FlashInfer version (default: 0.6.4)"
required: false
default: "0.6.4"
jobs:
publish-x86:
if: github.repository == 'sgl-project/sglang'
@@ -72,7 +67,6 @@ jobs:
--build-arg CUDA_VERSION=13.0.1 \
--build-arg BUILD_TYPE=all \
--build-arg INSTALL_FLASHINFER_JIT_CACHE=1 \
--build-arg FLASHINFER_VERSION=${{ github.event.inputs.flashinfer_version }} \
--build-arg GRACE_BLACKWELL=0 \
--build-arg SGL_VERSION=${version} \
-t lmsysorg/sglang:${tag} \
@@ -125,7 +119,6 @@ jobs:
--build-arg CUDA_VERSION=13.0.1 \
--build-arg BUILD_TYPE=all \
--build-arg INSTALL_FLASHINFER_JIT_CACHE=1 \
--build-arg FLASHINFER_VERSION=${{ github.event.inputs.flashinfer_version }} \
--build-arg GRACE_BLACKWELL=1 \
--build-arg SGL_VERSION=${version} \
-t lmsysorg/sglang:${tag} \

View File

@@ -12,7 +12,6 @@ FILES_TO_UPDATE = [
Path("docker/Dockerfile"),
Path("scripts/ci/cuda/ci_install_dependency.sh"),
Path("python/sglang/srt/entrypoints/engine.py"),
Path(".github/workflows/release-docker-cu13-framework.yml"),
Path("python/sglang/srt/utils/common.py"),
]
@@ -68,15 +67,6 @@ def replace_flashinfer_version(
new_content,
flags=re.DOTALL,
)
elif name == "release-docker-cu13-framework.yml":
new_content = new_content.replace(
f"FlashInfer version (default: {old_version})",
f"FlashInfer version (default: {new_version})",
)
new_content = new_content.replace(
f'default: "{old_version}"',
f'default: "{new_version}"',
)
elif name == "common.py":
new_content = new_content.replace(
f'e.g., "{old_version}"',