Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions .buildkite/base.rayci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,27 +77,3 @@ steps:
wanda: ci/docker/base.cu128.wanda.yaml
env:
PYTHON: "3.11"

- name: docbuild
label: "wanda: docbuild-py{{matrix}}"
wanda: ci/docker/doc.build.wanda.yaml
depends_on:
- oss-ci-base_build-multipy
- ray-core-build
- ray-dashboard-build
matrix:
- "3.9"
- "3.10"
- "3.12"
env:
PYTHON: "{{matrix}}"
REQUIREMENTS_FILE: "python/deplocks/docs/docbuild_depset_py{{matrix}}.lock"
tags: cibase

- name: docgpubuild
label: "wanda: docgpubuild-py3.10"
wanda: ci/docker/docgpu.build.wanda.yaml
depends_on: oss-ci-base_gpu-multipy
env:
PYTHON: "3.10"
tags: cibase
12 changes: 0 additions & 12 deletions .buildkite/build.rayci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,6 @@ steps:
depends_on: manylinux
job_env: manylinux

- label: ":tapioca: build: doc"
key: doc_build
instance_type: medium
commands:
- bazel run //ci/ray_ci/doc:cmd_build
depends_on: docbuild
job_env: docbuild-py3.12
tags:
- oss
- doc
- skip-on-premerge

- label: ":tapioca: build: ray py{{matrix}} docker (x86_64)"
key: ray_images
tags:
Expand Down
73 changes: 73 additions & 0 deletions .buildkite/doc.rayci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
group: doc
steps:
- name: docbuild
label: "wanda: docbuild-py{{matrix}}"
wanda: ci/docker/doc.build.wanda.yaml
depends_on:
- oss-ci-base_build-multipy
- ray-core-build
- ray-dashboard-build
matrix:
- "3.9"
- "3.10"
- "3.12"
env:
PYTHON: "{{matrix}}"
REQUIREMENTS_FILE: "python/deplocks/docs/docbuild_depset_py{{matrix}}.lock"
tags: cibase

- name: docgpubuild
label: "wanda: docgpubuild-py3.10"
wanda: ci/docker/docgpu.build.wanda.yaml
depends_on: oss-ci-base_gpu-multipy
env:
PYTHON: "3.10"
tags: cibase

- label: ":book: doc: build"
key: doc_build
instance_type: medium
commands:
- bazel run //ci/ray_ci/doc:cmd_build
depends_on: docbuild
job_env: docbuild-py3.12
tags:
- oss
- doc
- skip-on-premerge

- label: ":book: doc: check python API: {{matrix}}"
tags:
- oss
- python
- dashboard
- ray_client
- data
- serve
- ml
- tune
- train
- llm
- rllib
- rllib_gpu
- doc
key: lint-medium
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The goal of this PR is to separate doc-related jobs from lint jobs, as stated in the description: "so that they are not called lints any more". However, this job still has the key lint-medium, which is inconsistent with this goal. To improve consistency, consider changing it to something more descriptive that doesn't contain 'lint', for example doc-api-check.

    key: doc-api-check

instance_type: medium
depends_on: docbuild
job_env: docbuild-py3.9
commands:
- ./ci/lint/lint.sh {{matrix}}
matrix:
- api_annotations
- api_policy_check

- label: ":book: doc: linkcheck"
instance_type: medium
commands:
- make -C doc/ linkcheck_all
depends_on: docbuild
job_env: docbuild-py3.10
tags:
- oss
- skip-on-premerge
soft_fail: true
36 changes: 0 additions & 36 deletions .buildkite/lint.rayci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,39 +33,3 @@ steps:
- forge
commands:
- ./ci/lint/lint.sh pre_commit_pydoclint

- label: ":lint-roller: python API: {{matrix}}"
tags:
- oss
- python
- dashboard
- ray_client
- data
- serve
- ml
- tune
- train
- llm
- rllib
- rllib_gpu
- doc
key: lint-medium
instance_type: medium
depends_on: docbuild
job_env: docbuild-py3.9
commands:
- ./ci/lint/lint.sh {{matrix}}
matrix:
- api_annotations
- api_policy_check

- label: ":lint-roller: lint: linkcheck"
instance_type: medium
commands:
- make -C doc/ linkcheck_all
depends_on: docbuild
job_env: docbuild-py3.10
tags:
- oss
- skip-on-premerge
soft_fail: true
1 change: 1 addition & 0 deletions ci/pipeline/test_rules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ doc/*/BUILD
doc/*.rst
.vale.ini
.vale/
.buildkite/doc.rayci.yml
@ doc
;

Expand Down