mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
![]() * Move some Java tests into ci.sh * Move C++ worker tests into ci.sh * Define run() * Prepare to move Python tests into ci.sh * Fix issues in install-dependencies.sh * Reload environment for GitHub Actions * Move wheels to ci.sh and fix related issues * Don't bypass failures in install-ray.sh anymore * Make CI a little quieter * Move linting into ci.sh * Add vitals test right after build * Fix os.uname() unavailability on Windows Co-authored-by: Mehrdad <noreply@github.com> |
||
---|---|---|
.. | ||
java | ||
python | ||
src | ||
BUILD.bazel | ||
README.md |
Ray Streaming
-
Build streaming java
- build ray
bazel build //java:gen_maven_deps
cd java && mvn clean install -Dmaven.test.skip=true && cd ..
- build streaming
bazel build //streaming/java:gen_maven_deps
mvn clean install -Dmaven.test.skip=true
- build ray
-
Build ray python will build ray streaming python.
-
Run examples
# c++ test cd streaming/ && bazel test ... sh src/test/run_streaming_queue_test.sh cd .. # python test pushd python/ray/streaming/ pushd examples python simple.py --input-file toy.txt popd pushd tests pytest . popd popd # java test cd streaming/java/streaming-runtime mvn test