mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-25 08:15:18 -04: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
|
@ -1,4 +1,5 @@
|
|||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
load("//bazel/go:platform.bzl", "platform_binary")
|
||||
|
||||
go_library(
|
||||
name = "bootstrapper_lib",
|
||||
|
@ -54,3 +55,10 @@ go_binary(
|
|||
}),
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
platform_binary(
|
||||
name = "bootstrapper_linux_amd64",
|
||||
platform = "@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.34",
|
||||
target_file = ":bootstrapper",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue