mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
[doc] Update developer docs with bazel instructions (#4944)
This commit is contained in:
parent
c3f8fc1c44
commit
cbc67fc750
1 changed files with 13 additions and 2 deletions
|
@ -29,8 +29,11 @@ recompile much more quickly by doing
|
|||
|
||||
.. code-block:: shell
|
||||
|
||||
cd ray/build
|
||||
make -j8
|
||||
cd ray
|
||||
bazel build //:ray_pkg
|
||||
|
||||
This command is not enough to recompile all C++ unit tests. To do so, see
|
||||
`Testing locally`_.
|
||||
|
||||
Debugging
|
||||
---------
|
||||
|
@ -144,6 +147,14 @@ When running tests, usually only the first test failure matters. A single
|
|||
test failure often triggers the failure of subsequent tests in the same
|
||||
script.
|
||||
|
||||
To compile and run all C++ tests, you can run:
|
||||
|
||||
.. code-block:: shell
|
||||
|
||||
cd ray
|
||||
bazel test $(bazel query 'kind(cc_test, ...)')
|
||||
|
||||
|
||||
Linting
|
||||
-------
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue