mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 09:24:24 -05:00
99a88c033c
* use new impl for client.UploadAzureSEVSNP * fix: fetcher must parse new signature format * version-file is not persistentflag * fix fetcher tests
35 lines
869 B
Python
35 lines
869 B
Python
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"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/api/attestationconfig/client",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/api/attestationconfig",
|
|
"//internal/api/attestationconfig/fetcher",
|
|
"//internal/api/client",
|
|
"//internal/logger",
|
|
"//internal/sigstore",
|
|
"//internal/staticupload",
|
|
"//internal/variant",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "client_test",
|
|
srcs = ["client_test.go"],
|
|
# keep
|
|
count = 1,
|
|
embed = [":client"],
|
|
# keep
|
|
gotags = ["e2e"],
|
|
# keep
|
|
tags = ["manual"],
|
|
deps = [
|
|
"//internal/api/attestationconfig",
|
|
"@com_github_stretchr_testify//assert",
|
|
],
|
|
)
|