-
Notifications
You must be signed in to change notification settings - Fork 7k
[deps][ci] compiling all depsets in single job #57957
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,31 +19,14 @@ steps: | |
| job_env: oss-ci-base_test-py3.11 | ||
| depends_on: oss-ci-base_test-multipy | ||
|
|
||
| - label: ":tapioca: build: raydepsets: compile LLM dependencies" | ||
| key: raydepsets_compile_llm_dependencies | ||
| - label: ":tapioca: build: raydepsets: compile all dependencies" | ||
| key: raydepsets_compile_all_dependencies | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe add the TODO line in the code here? |
||
| tags: always | ||
| instance_type: small | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Job Downgrade Causes Resource ConstraintsThe |
||
| commands: | ||
| # TODO: add raydepsets build all command | ||
| - bazel run //ci/raydepsets:raydepsets -- build ci/raydepsets/configs/rayllm.depsets.yaml --check | ||
| - chown -R 2000:100 /artifact-mount | ||
| - cp ./python/deplocks/llm/* /artifact-mount/ | ||
| job_env: manylinux | ||
| depends_on: manylinux | ||
|
|
||
| - label: ":tapioca: build: raydepsets: compile ray img dependencies" | ||
| key: raydepsets_compile_rayimg_dependencies | ||
| tags: always | ||
| instance_type: medium | ||
| commands: | ||
| - bazel run //ci/raydepsets:raydepsets -- build ci/raydepsets/configs/rayimg.depsets.yaml --check | ||
| job_env: manylinux | ||
| depends_on: manylinux | ||
|
|
||
| - label: ":tapioca: build: raydepsets: compile multimodal inference release test dependencies" | ||
| key: raydepsets_compile_multimodal_inference_release_test_dependencies | ||
| tags: always | ||
| instance_type: medium | ||
| commands: | ||
| - bazel run //ci/raydepsets:raydepsets -- build ci/raydepsets/configs/release_multimodal_inference_benchmarks_tests.depsets.yaml --check | ||
| job_env: manylinux | ||
| depends_on: manylinux | ||
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.
Bug: Missing Commands Break Artifact Permissions
The combined depset compilation job is missing the
chown -R 2000:100 /artifact-mountandcp ./python/deplocks/llm/* /artifact-mount/commands. This prevents LLM dependency artifacts from being published to the artifact mount with correct permissions, breaking downstream jobs.