mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-12-01 08:55:04 -05:00
* deps: update Go dependencies * deps: hold back terraform-plugin deps * deps: keep google.golang.org/grpc at v1.74 * fix tests --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Weiße <dw@edgeless.systems>
33 lines
858 B
Text
33 lines
858 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "client",
|
|
srcs = [
|
|
"client.go",
|
|
"reporter.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi/cli/client",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/api/attestationconfigapi",
|
|
"//internal/api/client",
|
|
"//internal/attestation/variant",
|
|
"//internal/sigstore",
|
|
"//internal/staticupload",
|
|
"@com_github_aws_aws_sdk_go_v2_service_s3//:s3",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "client_test",
|
|
srcs = [
|
|
"client_test.go",
|
|
"reporter_test.go",
|
|
],
|
|
embed = [":client"],
|
|
deps = [
|
|
"//internal/api/attestationconfigapi",
|
|
"@com_github_stretchr_testify//assert",
|
|
],
|
|
)
|