mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
a73cdb9b14
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
40 lines
925 B
Python
40 lines
925 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_cross_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "cdbg_lib",
|
|
srcs = ["cdbg.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/debugd/cmd/cdbg",
|
|
visibility = ["//visibility:private"],
|
|
deps = ["//debugd/internal/cdbg/cmd"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "cdbg",
|
|
embed = [":cdbg_lib"],
|
|
# keep
|
|
pure = "on",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
[
|
|
go_cross_binary(
|
|
name = "cdbg_%s" % platform,
|
|
platform = "@io_bazel_rules_go//go/toolchain:" + platform,
|
|
target = ":cdbg",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
for platform in [
|
|
"darwin_amd64",
|
|
"darwin_arm64",
|
|
"linux_amd64",
|
|
"linux_arm64",
|
|
]
|
|
]
|
|
|
|
go_cross_binary(
|
|
name = "cdbg_host",
|
|
platform = "@local_config_platform//:host",
|
|
target = ":cdbg",
|
|
visibility = ["//visibility:public"],
|
|
)
|