mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["walk.go"],
|
|
importpath = "k8s.io/kubernetes/test/conformance",
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "conformance",
|
|
importpath = "k8s.io/kubernetes/test/conformance",
|
|
library = ":go_default_library",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(["**"]),
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [":package-srcs"],
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
genrule(
|
|
name = "list_conformance_tests",
|
|
srcs = [
|
|
"//test/e2e:all-srcs",
|
|
"//test/e2e_node:all-srcs",
|
|
],
|
|
outs = ["conformance.txt"],
|
|
cmd = "./$(location :conformance) $(locations //test/e2e:all-srcs) $(locations //test/e2e_node:all-srcs) > $@",
|
|
message = "Listing all conformance tests.",
|
|
tools = [":conformance"],
|
|
)
|
|
|
|
sh_test(
|
|
name = "conformance_test",
|
|
srcs = ["conformance_test.sh"],
|
|
data = [
|
|
"testdata/conformance.txt",
|
|
":list_conformance_tests",
|
|
],
|
|
)
|