forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
50 lines (44 loc) · 1.11 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_binary",
"go_library",
"go_test",
)
go_test(
name = "go_default_test",
srcs = ["migratestatus_test.go"],
embed = [":go_default_library"],
tags = ["manual"],
)
go_binary(
name = "migratestatus",
embed = [":go_default_library"],
tags = ["manual"],
)
go_library(
name = "go_default_library",
srcs = ["migratestatus.go"],
importpath = "k8s.io/test-infra/maintenance/migratestatus",
deps = [
"//maintenance/migratestatus/migrator:go_default_library",
"//prow/flagutil:go_default_library",
"//prow/logrusutil:go_default_library",
"@com_github_pkg_errors//:go_default_library",
"@com_github_sirupsen_logrus//:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//maintenance/migratestatus/migrator:all-srcs",
],
tags = ["automanaged"],
)