-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Fix release pipeline's dir permission #6391
Conversation
👋 Hi! Thank you for contributing to the vLLM project. Full CI run is still required to merge this PR so please make sure that you run full CI before merging or if you need more test signals. To run full CI, you can do one of these:
🚀 |
.buildkite/release-pipeline.yaml
Outdated
@@ -5,7 +5,7 @@ steps: | |||
commands: | |||
- "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 ." | |||
- "mkdir artifacts" | |||
- "docker run --rm -v $(pwd)/artifacts:/artifacts_host vllm-ci:build-image cp -r dist /artifacts_host" | |||
- "docker run --rm -v $(pwd)/artifacts:/artifacts_host vllm-ci:build-image bash -c 'cp -r dist /artifacts_host && chown -R buildkite-agent /artifacts_host'" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should go before cp ..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but the dist/* will still be owned by root in that case.
Signed-off-by: Alvant <[email protected]>
No description provided.