mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
30f2b332b3
* api: rename AttestationVersionRepo to Client * api: move client into separate subpkg for clearer import paths. * api: rename configapi -> attestationconfig * api: rename versionsapi -> versions * api: rename sut to client * api: split versionsapi client and make it public * api: split versionapi fetcher and make it public * config: move attestationversion type to config * api: fix attestationconfig client test Co-authored-by: Adrian Stobbe <stobbe.adrian@gmail.com>
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "imagefetcher",
|
|
srcs = [
|
|
"imagefetcher.go",
|
|
"raw.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/imagefetcher",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/api/fetcher",
|
|
"//internal/api/versions",
|
|
"//internal/api/versions/fetcher",
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/variant",
|
|
"@com_github_schollz_progressbar_v3//:progressbar",
|
|
"@com_github_spf13_afero//:afero",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "imagefetcher_test",
|
|
srcs = [
|
|
"imagefetcher_test.go",
|
|
"raw_test.go",
|
|
],
|
|
embed = [":imagefetcher"],
|
|
deps = [
|
|
"//internal/api/versions",
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/file",
|
|
"//internal/variant",
|
|
"@com_github_spf13_afero//:afero",
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|