mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
b51cc52945
* add SignContent() + integrate into configAPI * use static client for upload versions tool; fix staticupload calleeReference bug * use version to get proper cosign pub key. * mock fetcher in CLI tests * only provide config.New constructor with fetcher Co-authored-by: Otto Bittner <cobittner@posteo.net> Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com>
16 lines
397 B
Python
16 lines
397 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "configapi_lib",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/hack/configapi",
|
|
visibility = ["//visibility:private"],
|
|
deps = ["//hack/configapi/cmd"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "upload",
|
|
embed = [":configapi_lib"],
|
|
visibility = ["//visibility:public"],
|
|
)
|