mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
40 lines
949 B
Python
40 lines
949 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "versionsapi",
|
|
srcs = [
|
|
"apiconstants.go",
|
|
"cliinfo.go",
|
|
"imageinfo.go",
|
|
"latest.go",
|
|
"list.go",
|
|
"version.go",
|
|
"versionsapi.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/api/versionsapi",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/constants",
|
|
"@org_golang_x_mod//semver",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "versionsapi_test",
|
|
srcs = [
|
|
"cliinfo_test.go",
|
|
"imageinfo_test.go",
|
|
"latest_test.go",
|
|
"list_test.go",
|
|
"version_test.go",
|
|
],
|
|
embed = [":versionsapi"],
|
|
deps = [
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/constants",
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
],
|
|
)
|