-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
[Build] Annotate wheel and container path for release workflow #19162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
44abb4e
[Build] Annotate wheel and container path for release workflow
simon-mo 96ba129
include the script
simon-mo e5554de
Update .buildkite/scripts/annotate-release.sh
simon-mo 5d93391
fix syntax
simon-mo 8b33847
Merge branch 'release-ux' of github.com:simon-mo/vllm into release-ux
simon-mo 06fa703
fix syntax
simon-mo 755416f
fix syntax
simon-mo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/bash | ||
|
||
set -ex | ||
|
||
# Get release version and strip leading 'v' if present | ||
RELEASE_VERSION=$(buildkite-agent meta-data get release-version | sed 's/^v//') | ||
|
||
if [ -z "$RELEASE_VERSION" ]; then | ||
echo "Error: RELEASE_VERSION is empty. 'release-version' metadata might not be set or is invalid." | ||
exit 1 | ||
fi | ||
|
||
buildkite-agent annotate --style 'info' --context 'release-workflow' << EOF | ||
To download the wheel: | ||
\`\`\` | ||
aws s3 cp s3://vllm-wheels/${RELEASE_VERSION}/vllm-${RELEASE_VERSION}-cp38-abi3-manylinux1_x86_64.whl . | ||
aws s3 cp s3://vllm-wheels/${RELEASE_VERSION}+cu126/vllm-${RELEASE_VERSION}+cu126-cp38-abi3-manylinux1_x86_64.whl . | ||
aws s3 cp s3://vllm-wheels/${RELEASE_VERSION}+cu118/vllm-${RELEASE_VERSION}+cu118-cp38-abi3-manylinux1_x86_64.whl . | ||
\`\`\` | ||
|
||
To download and upload the image: | ||
|
||
\`\`\` | ||
docker pull public.ecr.aws/q9t5s3a7/vllm-release-repo:${BUILDKITE_COMMIT} | ||
docker tag public.ecr.aws/q9t5s3a7/vllm-release-repo:${BUILDKITE_COMMIT} vllm/vllm-openai | ||
docker tag vllm/vllm-openai vllm/vllm-openai:latest | ||
docker tag vllm/vllm-openai vllm/vllm-openai:v${RELEASE_VERSION} | ||
docker push vllm/vllm-openai:latest | ||
docker push vllm/vllm-openai:v${RELEASE_VERSION} | ||
\`\`\` | ||
EOF |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.