constellation/bazel/devbuild/BUILD.bazel
2023-03-14 14:37:58 +01:00

22 lines
712 B
Python

load("//bazel/ci:def.bzl", "sh_template")
sh_template(
name = "devbuild",
data = [
"//bazel/ci:base_lib",
"//bootstrapper/cmd/bootstrapper",
"//cli:cli_oss_host",
"//debugd/cmd/cdbg:cdbg_host",
"//upgrade-agent/cmd",
],
substitutions = {
"@@BASE_LIB@@": "$(rootpath //bazel/ci:base_lib)",
"@@BOOTSTRAPPER@@": "$(rootpath //bootstrapper/cmd/bootstrapper)",
"@@CDBG@@": "$(rootpath //debugd/cmd/cdbg:cdbg_host)",
"@@CLI@@": "$(rootpath //cli:cli_oss_host)",
"@@UPGRADE_AGENT@@": "$(rootpath //upgrade-agent/cmd)",
},
template = "prepare_developer_workspace.sh.in",
visibility = ["//visibility:public"],
)