forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
41 lines (34 loc) · 871 Bytes
/
BUILD.bazel
File metadata and controls
41 lines (34 loc) · 871 Bytes
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
package(default_visibility = ["//visibility:public"])
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
load("//prow:def.bzl", "prow_image")
NAME = "configurator"
go_binary(
name = NAME,
embed = [":go_default_library"],
pure = "on",
tags = ["manual"],
)
prow_image(
name = "image",
component = NAME,
)
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "k8s.io/test-infra/testgrid/cmd/configurator",
deps = [
"//testgrid/pkg/configurator/configurator:go_default_library",
"//testgrid/pkg/configurator/options:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)