[Java] fix redis-server binary path (#9398)

This commit is contained in:
chaokunyang
2020-07-15 10:47:16 +08:00
committed by GitHub
parent 7eafe646a9
commit ccc1133a7a
4 changed files with 19 additions and 11 deletions
+10 -1
View File
@@ -155,15 +155,24 @@ genrule(
""",
)
# `//:redis-server`'s full path is `external/com_github_antirez_redis/redis-server`,
# This rule removes the prefix, and only keeps `redis-server`.
genrule(
name = "redis-server-without-prefix",
srcs = ["//:redis-server"],
outs = ["redis-server"],
cmd = "cp $< $@",
)
filegroup(
name = "java_native_deps",
srcs = [
":cp_plasma_store_server",
":redis-server-without-prefix",
"//:core_worker_library_java",
"//:gcs_server",
"//:libray_redis_module.so",
"//:raylet",
"//:redis-server",
],
)