mirror of
https://github.com/wassname/ray.git
synced 2026-06-29 17:04:56 +08:00
4aa68b82fa
* Delete LINT section of install-ray.sh since it appears unused * Delete install.sh since it appears unused * Delete run_test.sh since it appears unused * Put environment variables on separate lines in .travis.yml * Move --jobs 50 out of install-ray.sh * Delete upgrade-syn.sh since it appears unused * Move CI bazel flags to .bazelrc via --config * Make installations quieter * Get rid of verbose Maven messages * Install Bazel system-wide for CI so that there's no need to update PATH * Recognize Windows as valid platform Co-authored-by: Mehrdad <noreply@github.com>
Ray Streaming
-
Build streaming java
- build ray
bazel build //java:gen_maven_depscd java && mvn clean install -Dmaven.test.skip=true && cd ..
- build streaming
bazel build //streaming/java:gen_maven_depsmvn 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