vendor updates

This commit is contained in:
Serguei Bezverkhi
2018-03-06 17:33:18 -05:00
parent 4b3ebc171b
commit e9033989a0
5854 changed files with 248382 additions and 119809 deletions

View File

@ -1,4 +1,4 @@
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
go_library(
name = "go_default_library",
@ -9,8 +9,7 @@ go_library(
go_binary(
name = "conformance",
importpath = "k8s.io/kubernetes/test/conformance",
library = ":go_default_library",
embed = [":go_default_library"],
visibility = ["//visibility:public"],
)
@ -48,3 +47,10 @@ sh_test(
":list_conformance_tests",
],
)
go_test(
name = "go_default_test",
srcs = ["walk_test.go"],
data = glob(["testdata/**"]),
embed = [":go_default_library"],
)