Skip to content

Commit

Permalink
[CI] Adding CPU docker pipeline (vllm-project#11261)
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <[email protected]>
Co-authored-by: Kevin H. Luu <[email protected]>
  • Loading branch information
zhouyuan and khluu authored Dec 19, 2024
1 parent e461c26 commit a985f7a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .buildkite/release-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,18 @@ steps:
password-env: DOCKERHUB_TOKEN
env:
DOCKER_BUILDKIT: "1"

- block: "Build CPU release image"
key: block-cpu-release-image-build
depends_on: ~

- label: "Build and publish CPU release image"
depends_on: block-cpu-release-image-build
agents:
queue: cpu_queue_postmerge
commands:
- "aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws/q9t5s3a7"
- "DOCKER_BUILDKIT=1 docker build --build-arg max_jobs=16 --build-arg GIT_REPO_CHECK=1 --tag public.ecr.aws/q9t5s3a7/vllm-cpu-release-repo:$RELEASE_VERSION --progress plain -f Dockerfile.cpu ."
- "docker push public.ecr.aws/q9t5s3a7/vllm-cpu-release-repo:$RELEASE_VERSION"
env:
DOCKER_BUILDKIT: "1"

0 comments on commit a985f7a

Please sign in to comment.