mirror of
https://github.com/kvcache-ai/sglang.git
synced 2026-06-30 11:48:01 +00:00
82 lines
2.2 KiB
Bash
Executable File
82 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Script to commit kernel version bump changes to SGLang and create a pull request
|
|
# Usage: commit_and_pr_kernel_to_sglang.sh <kernel_version> <branch_name>
|
|
#
|
|
# Arguments:
|
|
# kernel_version: The kernel version being synced
|
|
# branch_name: The git branch name to push to
|
|
|
|
KERNEL_VERSION="$1"
|
|
BRANCH_NAME="$2"
|
|
|
|
if [ -z "$KERNEL_VERSION" ] || [ -z "$BRANCH_NAME" ]; then
|
|
echo "Error: Missing required arguments"
|
|
echo "Usage: $0 <kernel_version> <branch_name>"
|
|
exit 1
|
|
fi
|
|
|
|
# Get changed files and format them
|
|
echo "Getting changed files..."
|
|
FILES_LIST=$(git diff --name-only | sed 's/^/- /')
|
|
COMMIT_FILES=$(git diff --name-only | sed 's/^/ - /')
|
|
|
|
# Commit changes
|
|
echo "Committing changes..."
|
|
git add -A
|
|
git commit -m "chore: bump sglang-kernel version to ${KERNEL_VERSION} in SGLang
|
|
|
|
This commit updates the sglang-kernel version across SGLang files to match
|
|
the version defined in sgl-kernel/pyproject.toml.
|
|
|
|
Files updated:
|
|
${COMMIT_FILES}
|
|
|
|
🤖 Generated with GitHub Actions"
|
|
|
|
# Push changes
|
|
echo "Pushing to ${BRANCH_NAME}..."
|
|
git push origin "${BRANCH_NAME}"
|
|
|
|
# Create pull request
|
|
echo "Creating pull request..."
|
|
PR_URL=$(gh pr create \
|
|
--title "chore: bump sglang-kernel version to ${KERNEL_VERSION}" \
|
|
--body "## Summary
|
|
|
|
This PR bumps the \`sglang-kernel\` version to \`${KERNEL_VERSION}\` across SGLang files to match the version defined in \`sgl-kernel/pyproject.toml\`.
|
|
|
|
**Kernel Version:** \`${KERNEL_VERSION}\`
|
|
|
|
## Files Updated
|
|
${FILES_LIST}
|
|
|
|
## Context
|
|
|
|
The kernel version in \`sgl-kernel/pyproject.toml\` has been updated. This PR ensures that all SGLang files referencing the \`sglang-kernel\` dependency are updated accordingly:
|
|
- \`python/pyproject.toml\` - dependency specification
|
|
- \`python/sglang/srt/entrypoints/engine.py\` - version check
|
|
- \`docker/Dockerfile\` - Docker build argument
|
|
|
|
🤖 Generated with GitHub Actions" \
|
|
--base main \
|
|
--head "${BRANCH_NAME}")
|
|
|
|
echo "✓ Pull request created successfully"
|
|
|
|
# Add GitHub Actions job summary
|
|
if [ -n "$GITHUB_STEP_SUMMARY" ]; then
|
|
cat >> "$GITHUB_STEP_SUMMARY" <<EOF
|
|
## ✅ Kernel Version Bump Complete
|
|
|
|
**Kernel Version:** \`${KERNEL_VERSION}\`
|
|
|
|
### 📝 Pull Request Created
|
|
${PR_URL}
|
|
|
|
### 📦 Files Updated
|
|
${FILES_LIST}
|
|
EOF
|
|
fi
|