2023-03-09 09:23:42 -05:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "measurements",
|
|
|
|
srcs = [
|
|
|
|
"measurements.go",
|
|
|
|
# keep
|
|
|
|
"measurements_enterprise.go",
|
|
|
|
# keep
|
|
|
|
"measurements_oss.go",
|
|
|
|
],
|
|
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/attestation/measurements",
|
|
|
|
visibility = ["//:__subpackages__"],
|
|
|
|
deps = [
|
2023-05-25 12:43:44 -04:00
|
|
|
"//internal/api/versionsapi",
|
2023-03-09 09:23:42 -05:00
|
|
|
"//internal/cloud/cloudprovider",
|
|
|
|
"//internal/sigstore",
|
2023-03-20 06:15:57 -04:00
|
|
|
"//internal/variant",
|
2023-03-09 09:23:42 -05:00
|
|
|
"@com_github_google_go_tpm//tpmutil",
|
|
|
|
"@com_github_siderolabs_talos_pkg_machinery//config/encoder",
|
|
|
|
"@in_gopkg_yaml_v3//:yaml_v3",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "measurements_test",
|
|
|
|
srcs = ["measurements_test.go"],
|
|
|
|
embed = [":measurements"],
|
|
|
|
deps = [
|
2023-05-25 12:43:44 -04:00
|
|
|
"//internal/api/versionsapi",
|
2023-03-09 09:23:42 -05:00
|
|
|
"//internal/cloud/cloudprovider",
|
2023-05-26 11:49:46 -04:00
|
|
|
"//internal/sigstore",
|
2023-05-22 08:59:28 -04:00
|
|
|
"//internal/variant",
|
2023-03-09 09:23:42 -05:00
|
|
|
"@com_github_siderolabs_talos_pkg_machinery//config/encoder",
|
|
|
|
"@com_github_stretchr_testify//assert",
|
|
|
|
"@com_github_stretchr_testify//require",
|
|
|
|
"@in_gopkg_yaml_v3//:yaml_v3",
|
|
|
|
],
|
|
|
|
)
|