Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build Raylet with Bazel #3806

Merged
merged 30 commits into from
Jan 20, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
update
  • Loading branch information
pcmoritz committed Jan 18, 2019
commit 03f48c1f804173739b960744273f9749cd61d587
42 changes: 19 additions & 23 deletions BUILD
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Bazel build
# C/C++ documentation: https://docs.bazel.build/versions/master/be/c-cpp.html
#
# Notes:
# * All external deps referenced as THIRDPARTY:name. Need to be implemented.
# * Credis not implemented.

load("@com_github_google_flatbuffers//:build_defs.bzl", "flatbuffer_cc_library")

Expand Down Expand Up @@ -57,26 +53,26 @@ cc_library(
],
)

# cc_test(
# name="lineage_cache_test",
# srcs=["src/ray/raylet/lineage_cache_test.cc"],
# deps=[
# "@com_google_googletest//:gtest_main",
# ":node_manager_fbs",
# ":raylet_lib",
# ],
# )
cc_test(
name="lineage_cache_test",
srcs=["src/ray/raylet/lineage_cache_test.cc"],
deps=[
"@com_google_googletest//:gtest_main",
":node_manager_fbs",
":raylet_lib",
],
)

# cc_test(
# name="reconstruction_policy_test",
# srcs=["src/ray/raylet/reconstruction_policy_test.cc"],
# deps=[
# "@com_google_googletest//:gtest_main",
# ":node_manager_fbs",
# ":object_manager",
# ":raylet_lib"
# ],
# )
cc_test(
name="reconstruction_policy_test",
srcs=["src/ray/raylet/reconstruction_policy_test.cc"],
deps=[
"@com_google_googletest//:gtest_main",
":node_manager_fbs",
":object_manager",
":raylet_lib"
],
)

cc_test(
name="worker_pool_test",
Expand Down