Skip to content

Commit 6bc9710

Browse files
authored
Fix release pipeline's dir permission (#6391)
1 parent 111fc6e commit 6bc9710

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.buildkite/release-pipeline.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ steps:
55
commands:
66
- "DOCKER_BUILDKIT=1 docker build --build-arg max_jobs=16 --build-arg USE_SCCACHE=1 --build-arg CUDA_VERSION={{matrix.cuda_version}} --build-arg PYTHON_VERSION={{matrix.python_version}} --tag vllm-ci:build-image --target build --progress plain ."
77
- "mkdir artifacts"
8-
- "docker run --rm -v $(pwd)/artifacts:/artifacts_host vllm-ci:build-image cp -r dist /artifacts_host"
8+
- "docker run --rm -v $(pwd)/artifacts:/artifacts_host vllm-ci:build-image bash -c 'cp -r dist /artifacts_host && chmod -R a+rw /artifacts_host'"
99
# rename the files to change linux -> manylinux1
1010
- "for f in artifacts/dist/*.whl; do mv -- \"$$f\" \"$${f/linux/manylinux1}\"; done"
11-
- "aws s3 cp --recursive --acl public-read artifacts/dist s3://vllm-wheels/$BUILDKITE_COMMIT/"
12-
- "aws s3 cp --recursive --acl public-read artifacts/dist s3://vllm-wheels/nightly/"
11+
- "aws s3 cp --recursive artifacts/dist s3://vllm-wheels/$BUILDKITE_COMMIT/"
12+
- "aws s3 cp --recursive artifacts/dist s3://vllm-wheels/nightly/"
1313
matrix:
1414
setup:
1515
cuda_version:
@@ -26,10 +26,10 @@ steps:
2626
commands:
2727
- "DOCKER_BUILDKIT=1 docker build --build-arg max_jobs=16 --build-arg USE_SCCACHE=1 --build-arg CUDA_VERSION={{matrix.cuda_version}} --build-arg PYTHON_VERSION={{matrix.python_version}} --tag vllm-ci:build-image --target build --progress plain ."
2828
- "mkdir artifacts"
29-
- "docker run --rm -v $(pwd)/artifacts:/artifacts_host vllm-ci:build-image cp -r dist /artifacts_host"
29+
- "docker run --rm -v $(pwd)/artifacts:/artifacts_host vllm-ci:build-image bash -c 'cp -r dist /artifacts_host && chmod -R a+rw /artifacts_host'"
3030
- "for f in artifacts/dist/*.whl; do mv -- \"$$f\" \"$${f/linux/manylinux1}\"; done"
31-
- "aws s3 cp --recursive --acl public-read artifacts/dist s3://vllm-wheels/$BUILDKITE_COMMIT/"
32-
- "aws s3 cp --recursive --acl public-read artifacts/dist s3://vllm-wheels/nightly/"
31+
- "aws s3 cp --recursive artifacts/dist s3://vllm-wheels/$BUILDKITE_COMMIT/"
32+
- "aws s3 cp --recursive artifacts/dist s3://vllm-wheels/nightly/"
3333
matrix:
3434
setup:
3535
cuda_version:

0 commit comments

Comments
 (0)