Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
62a6b7c7
Unverified
Commit
62a6b7c7
authored
Jul 26, 2025
by
kyleliang-nv
Committed by
GitHub
Jul 26, 2025
Browse files
Add docker release flow for gb200 (#8394)
parent
76154631
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
.github/workflows/release-docker-gb200.yml
.github/workflows/release-docker-gb200.yml
+40
-0
No files found.
.github/workflows/release-docker-gb200.yml
0 → 100644
View file @
62a6b7c7
name
:
Release Docker Images (GB200)
on
:
push
:
branches
:
-
main
paths
:
-
"
python/sglang/version.py"
workflow_dispatch
:
jobs
:
publish
:
if
:
github.repository == 'sgl-project/sglang'
runs-on
:
ubuntu-latest
environment
:
'
prod'
steps
:
-
name
:
Delete huge unnecessary tools folder
run
:
rm -rf /opt/hostedtoolcache
-
name
:
Checkout repository
uses
:
actions/checkout@v4
-
name
:
Set up QEMU
uses
:
docker/setup-qemu-action@v3
-
name
:
Set up Docker Buildx
uses
:
docker/setup-buildx-action@v3
-
name
:
Login to Docker Hub
uses
:
docker/login-action@v2
with
:
username
:
${{ secrets.DOCKERHUB_USERNAME }}
password
:
${{ secrets.DOCKERHUB_TOKEN }}
-
name
:
Build and Push
run
:
|
version=$(cat python/sglang/version.py | cut -d'"' -f2)
tag=v${version}-cu128-gb200
docker buildx build --platform linux/arm64 --output type=image,compression=zstd . -f docker/Dockerfile.gb200 --build-arg CUDA_VERSION=12.8.1 --build-arg BUILD_TYPE=blackwell -t lmsysorg/sglang:${tag} --no-cache
docker push lmsysorg/sglang:${tag}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment