forked from Lizhu-Chen/bark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
54 lines (41 loc) · 1.74 KB
/
Copy pathWORKSPACE
File metadata and controls
54 lines (41 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
workspace(name = "bark_project")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository", "new_git_repository")
# ---- BARK Internal Dependencies ----------------
load("@bark_project//tools:deps.bzl", "bark_dependencies")
bark_dependencies()
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
boost_deps()
# -------------------------------------------------
# ------ Planner UCT ------------------------------
git_repository(
name = "planner_uct",
commit="fac5d85c96867be336a4500d45d0277abe48465c",
remote = "https://github.com/bark-simulator/planner-mcts"
)
load("@planner_uct//util:deps.bzl", "planner_uct_rules_dependencies")
planner_uct_rules_dependencies()
# --------------------------------------------------
# -------- Benchmark Database -----------------------
git_repository(
name = "benchmark_database",
commit="a5d97f80eb7d6d0fe1d4221c9bc3694e816f1dfe",
remote = "https://github.com/bark-simulator/benchmark-database"
)
load("@benchmark_database//util:deps.bzl", "benchmark_database_dependencies")
load("@benchmark_database//load:load.bzl", "benchmark_database_release")
benchmark_database_dependencies()
benchmark_database_release()
# --------------------------------------------------
# ------------------- BARK-ML ----------------------
git_repository(
name = "bark_ml",
commit="f1f392ab46bd1e5ea8db5958113526c173814a0e",
remote = "https://github.com/bark-simulator/bark-ml"
)
# --------------------------------------------------
# git_repository(
# name = "interaction_dataset_fortiss_internal",
# commit = "9ace5fde9260c20736b0463026e0f407b7d395ba",
# remote = "https://git.fortiss.org/autosim/interaction_dataset"
# )