mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-23 23:40:44 -04:00
19 lines
724 B
Text
19 lines
724 B
Text
load("//bazel/sh:def.bzl", "sh_template")
|
|
|
|
sh_template(
|
|
name = "devbuild",
|
|
data = [
|
|
"//bootstrapper/cmd/bootstrapper:bootstrapper_linux_amd64",
|
|
"//cli:cli_oss_host",
|
|
"//debugd/cmd/cdbg:cdbg_host",
|
|
"//upgrade-agent/cmd:upgrade_agent_linux_amd64",
|
|
],
|
|
substitutions = {
|
|
"@@BOOTSTRAPPER@@": "$(rootpath //bootstrapper/cmd/bootstrapper:bootstrapper_linux_amd64)",
|
|
"@@CDBG@@": "$(rootpath //debugd/cmd/cdbg:cdbg_host)",
|
|
"@@CLI@@": "$(rootpath //cli:cli_oss_host)",
|
|
"@@UPGRADE_AGENT@@": "$(rootpath //upgrade-agent/cmd:upgrade_agent_linux_amd64)",
|
|
},
|
|
template = "prepare_developer_workspace.sh.in",
|
|
visibility = ["//visibility:public"],
|
|
)
|