2023-03-14 12:29:54 -04:00
|
|
|
load("//bazel/sh:def.bzl", "sh_template")
|
2023-03-14 08:57:39 -04:00
|
|
|
|
|
|
|
sh_template(
|
|
|
|
name = "devbuild",
|
|
|
|
data = [
|
2023-03-16 11:13:48 -04:00
|
|
|
"//bootstrapper/cmd/bootstrapper:bootstrapper_linux_amd64",
|
2023-03-14 08:57:39 -04:00
|
|
|
"//cli:cli_oss_host",
|
|
|
|
"//debugd/cmd/cdbg:cdbg_host",
|
2023-03-16 11:13:48 -04:00
|
|
|
"//upgrade-agent/cmd:upgrade_agent_linux_amd64",
|
2023-03-14 08:57:39 -04:00
|
|
|
],
|
|
|
|
substitutions = {
|
2023-03-16 11:13:48 -04:00
|
|
|
"@@BOOTSTRAPPER@@": "$(rootpath //bootstrapper/cmd/bootstrapper:bootstrapper_linux_amd64)",
|
2023-03-14 08:57:39 -04:00
|
|
|
"@@CDBG@@": "$(rootpath //debugd/cmd/cdbg:cdbg_host)",
|
2023-03-14 09:37:58 -04:00
|
|
|
"@@CLI@@": "$(rootpath //cli:cli_oss_host)",
|
2023-03-16 11:13:48 -04:00
|
|
|
"@@UPGRADE_AGENT@@": "$(rootpath //upgrade-agent/cmd:upgrade_agent_linux_amd64)",
|
2023-03-14 08:57:39 -04:00
|
|
|
},
|
|
|
|
template = "prepare_developer_workspace.sh.in",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|