Commit 6096d9d4 authored by Matt Liggett's avatar Matt Liggett

update-bazel

parent fad43111
...@@ -3,11 +3,13 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") ...@@ -3,11 +3,13 @@ load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
go_library( go_library(
name = "go_default_library", name = "go_default_library",
srcs = ["walk.go"], srcs = ["walk.go"],
importpath = "k8s.io/kubernetes/test/conformance",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
) )
go_binary( go_binary(
name = "conformance", name = "conformance",
importpath = "k8s.io/kubernetes/test/conformance",
library = ":go_default_library", library = ":go_default_library",
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
) )
...@@ -38,5 +40,8 @@ genrule( ...@@ -38,5 +40,8 @@ genrule(
sh_test( sh_test(
name = "conformance_test", name = "conformance_test",
srcs = ["conformance_test.sh"], srcs = ["conformance_test.sh"],
data = ["testdata/conformance.txt", ":list_conformance_tests"], data = [
"testdata/conformance.txt",
":list_conformance_tests",
],
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment