mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
2fb829294b
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
40 lines
956 B
Python
40 lines
956 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "configapi_lib",
|
|
srcs = [
|
|
"delete.go",
|
|
"main.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/hack/configapi",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//internal/api/attestationconfigapi",
|
|
"//internal/logger",
|
|
"//internal/staticupload",
|
|
"@com_github_spf13_cobra//:cobra",
|
|
"@org_uber_go_zap//:zap",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "configapi",
|
|
embed = [":configapi_lib"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "configapi_test",
|
|
srcs = [
|
|
"delete_test.go",
|
|
"main_test.go",
|
|
],
|
|
embed = [":configapi_lib"],
|
|
deps = [
|
|
"//internal/api/attestationconfigapi",
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
],
|
|
)
|