mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-12-11 06:02:41 -05:00
bazel: use host platform by default (#1434)
This commit is contained in:
parent
0fc15b2393
commit
62e2e70699
9 changed files with 107 additions and 21 deletions
|
|
@ -3,16 +3,16 @@ load("//bazel/sh:def.bzl", "sh_template")
|
|||
sh_template(
|
||||
name = "devbuild",
|
||||
data = [
|
||||
"//bootstrapper/cmd/bootstrapper",
|
||||
"//bootstrapper/cmd/bootstrapper:bootstrapper_linux_amd64",
|
||||
"//cli:cli_oss_host",
|
||||
"//debugd/cmd/cdbg:cdbg_host",
|
||||
"//upgrade-agent/cmd",
|
||||
"//upgrade-agent/cmd:upgrade_agent_linux_amd64",
|
||||
],
|
||||
substitutions = {
|
||||
"@@BOOTSTRAPPER@@": "$(rootpath //bootstrapper/cmd/bootstrapper)",
|
||||
"@@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@@": "$(rootpath //upgrade-agent/cmd:upgrade_agent_linux_amd64)",
|
||||
},
|
||||
template = "prepare_developer_workspace.sh.in",
|
||||
visibility = ["//visibility:public"],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue