Skip to content

Commit

Permalink
[ci] fix misc group dependency (ray-project#48785)
Browse files Browse the repository at this point in the history
so that dependency recompiling can work without the dependency on
`oss-ci-base_build`, which requires a valid, working dependency
constraint file.

Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
  • Loading branch information
aslonnie authored Nov 19, 2024
1 parent c4c5a12 commit dbd9c95
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .buildkite/others.rayci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
group: others
depends_on:
- forge
- oss-ci-base_build
steps:
#build
- name: doctestbuild
wanda: ci/docker/doctest.build.wanda.yaml

# dependencies
- label: ":tapioca: build: pip-compile dependencies"
key: pip_compile_dependencies
instance_type: small
Expand All @@ -19,10 +15,13 @@ steps:
- cp -f ./python/requirements_compiled.txt /artifact-mount/
soft_fail: true
job_env: oss-ci-base_test-py3.11
depends_on:
- oss-ci-base_test-multipy
depends_on: oss-ci-base_test-multipy

# docs
- name: doctestbuild
wanda: ci/docker/doctest.build.wanda.yaml
depends_on: oss-ci-base_build

# test
- label: doc tests
instance_type: large
commands:
Expand All @@ -40,6 +39,7 @@ steps:
--skip-ray-installation
depends_on: doctestbuild

# java
- label: ":java: java tests"
tags: java
instance_type: medium
Expand All @@ -48,7 +48,7 @@ steps:
- docker run -i --rm --volume /tmp/artifacts:/artifact-mount --shm-size=2.5gb
"$${RAYCI_WORK_REPO}":"$${RAYCI_BUILD_ID}"-corebuild /bin/bash -iecuo pipefail
"./java/test.sh"
depends_on: [ "corebuild", "forge" ]
depends_on: corebuild

# bot
- label: ":robot_face: CI weekly green metric"
Expand Down

0 comments on commit dbd9c95

Please sign in to comment.