bazel: command to prepare development workspace (#1425)

This command symlinks all binaries into the current working directory (or the path specified by the first argument)

* bazel: command to prepare development workspace
* bazel: set malt3 as codeowner
This commit is contained in:
Malte Poll 2023-03-14 13:57:39 +01:00 committed by GitHub
parent e4b5ef0ed4
commit a73cdb9b14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 86 additions and 3 deletions

View file

@ -43,3 +43,16 @@ go_binary(
"enterprise",
]
]
[
go_cross_binary(
name = "cli_%s_host" % edition,
platform = "@local_config_platform//:host",
target = ":cli_%s" % edition,
visibility = ["//visibility:public"],
)
for edition in [
"oss",
"enterprise",
]
]