constellation/internal/imagefetcher/BUILD.bazel

40 lines
1.1 KiB
Python
Raw Normal View History

load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
2023-05-23 07:17:27 +00:00
name = "imagefetcher",
srcs = [
"imagefetcher.go",
"raw.go",
],
2023-05-23 07:17:27 +00:00
importpath = "github.com/edgelesssys/constellation/v2/internal/imagefetcher",
visibility = ["//:__subpackages__"],
deps = [
"//internal/api/fetcher",
"//internal/api/versionsapi",
"//internal/attestation/variant",
"//internal/cloud/cloudprovider",
"@com_github_schollz_progressbar_v3//:progressbar",
"@com_github_spf13_afero//:afero",
],
)
go_test(
2023-05-23 07:17:27 +00:00
name = "imagefetcher_test",
srcs = [
2023-05-23 07:17:27 +00:00
"imagefetcher_test.go",
"raw_test.go",
],
2023-05-23 07:17:27 +00:00
embed = [":imagefetcher"],
deps = [
"//internal/api/versionsapi",
"//internal/attestation/variant",
"//internal/cloud/cloudprovider",
"//internal/file",
"@com_github_spf13_afero//:afero",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
"@org_uber_go_goleak//:goleak",
],
)