Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .buildkite/release-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ steps:
- "bash tools/vllm-rocm/generate-rocm-wheels-root-index.sh"
env:
S3_BUCKET: "vllm-wheels"
VARIANT: "rocm700"
VARIANT: "rocm721"
Comment thread
tjtanaa marked this conversation as resolved.

# ROCm Job 6: Build ROCm Release Docker Image
- label: ":docker: Build release image - x86_64 - ROCm"
Expand Down Expand Up @@ -681,6 +681,7 @@ steps:
- label: "Publish nightly ROCm image to DockerHub"
depends_on:
- build-rocm-release-image
if: build.env("NIGHTLY") == "1"
agents:
queue: small_cpu_queue_release
commands:
Expand Down
4 changes: 2 additions & 2 deletions tools/vllm-rocm/generate-rocm-wheels-root-index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
#
# Environment variables:
# S3_BUCKET - Bucket name (default: vllm-wheels)
# VARIANT - ROCm variant (default: rocm700)
# VARIANT - ROCm variant (default: rocm721)
# DRY_RUN - Set to 1 for preview mode (same as --dry-run)

set -euo pipefail

# ======== Configuration ========
BUCKET="${S3_BUCKET:-vllm-wheels}"
VARIANT="${VARIANT:-rocm700}"
VARIANT="${VARIANT:-rocm721}"
DRY_RUN="${DRY_RUN:-0}"
FORCE_VERSION=""

Expand Down
Loading