mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
27 lines
723 B
Python
27 lines
723 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "versions",
|
|
srcs = ["versions.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/versions",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/compatibility",
|
|
"//internal/constants",
|
|
"//internal/versions/components",
|
|
"@org_golang_x_mod//semver",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "versions_test",
|
|
srcs = ["versions_test.go"],
|
|
embed = [":versions"],
|
|
deps = [
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
"@com_github_vincent_petithory_dataurl//:dataurl",
|
|
],
|
|
)
|