mirror of
https://github.com/wassname/ray.git
synced 2026-08-14 12:40:23 +08:00
Build Raylet with Bazel (#3806)
This commit is contained in:
committed by
Robert Nishihara
parent
aad48ee5a5
commit
0dad4e6a25
@@ -0,0 +1,29 @@
|
||||
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository", "new_git_repository")
|
||||
|
||||
git_repository(
|
||||
name = "com_github_nelhage_rules_boost",
|
||||
commit = "6d6fd834281cb8f8e758dd9ad76df86304bf1869",
|
||||
remote = "https://github.com/nelhage/rules_boost",
|
||||
)
|
||||
|
||||
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
|
||||
boost_deps()
|
||||
|
||||
git_repository(
|
||||
name = "com_github_google_flatbuffers",
|
||||
remote = "https://github.com/google/flatbuffers.git",
|
||||
commit = "63d51afd1196336a7d1f56a988091ef05deb1c62",
|
||||
)
|
||||
|
||||
git_repository(
|
||||
name = "com_google_googletest",
|
||||
remote = "https://github.com/google/googletest",
|
||||
commit = "3306848f697568aacf4bcca330f6bdd5ce671899",
|
||||
)
|
||||
|
||||
new_git_repository(
|
||||
name = "plasma",
|
||||
build_file = "@//bazel:BUILD.plasma",
|
||||
remote = "https://github.com/ray-project/arrow",
|
||||
commit = "1e4f867eb1dc31107331ab1defdffb94467f31dc",
|
||||
)
|
||||
Reference in New Issue
Block a user