update-bazel

This commit is contained in:
Matt Liggett 2017-10-27 14:12:05 -07:00
parent fad431118a
commit 6096d9d4a1

View File

@ -3,11 +3,13 @@ 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"],
)
@ -38,5 +40,8 @@ genrule(
sh_test(
name = "conformance_test",
srcs = ["conformance_test.sh"],
data = ["testdata/conformance.txt", ":list_conformance_tests"],
data = [
"testdata/conformance.txt",
":list_conformance_tests",
],
)