mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
45879c7360
Before, we specified that the platform has glibc 2.23 under /usr/lib. This is technically not important for statically linked Go binaries.
45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_cross_binary", "go_library")
|
|
load("@rules_pkg//:pkg.bzl", "pkg_tar")
|
|
|
|
go_library(
|
|
name = "cmd_lib",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/measurement-reader/cmd",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//internal/attestation/variant",
|
|
"//internal/constants",
|
|
"//internal/logger",
|
|
"//measurement-reader/internal/sorted",
|
|
"//measurement-reader/internal/tdx",
|
|
"//measurement-reader/internal/tpm",
|
|
"@org_uber_go_zap//:zap",
|
|
"@org_uber_go_zap//zapcore",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "cmd",
|
|
embed = [":cmd_lib"],
|
|
# keep
|
|
pure = "on",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_cross_binary(
|
|
name = "measurement-reader_linux_amd64",
|
|
platform = "//bazel/platforms:go-pure_x86_64-linux",
|
|
target = ":cmd",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
pkg_tar(
|
|
name = "measurement-reader-package",
|
|
srcs = [
|
|
":measurement-reader_linux_amd64",
|
|
],
|
|
mode = "0755",
|
|
remap_paths = {"/measurement-reader_linux_amd64": "/usr/sbin/measurement-reader"},
|
|
visibility = ["//visibility:public"],
|
|
)
|