forked from clarketm/istio_test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
64 lines (58 loc) · 1.5 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# gazelle:prefix istio.io/test-infra
# gazelle:proto disable_global
load("@com_github_bazelbuild_buildtools//buildifier:def.bzl", "buildifier")
load("@bazel_gazelle//:def.bzl", "gazelle")
buildifier(
name = "buildifier",
)
gazelle(
name = "gazelle",
command = "fix",
external = "vendored",
)
platform(
name = "rbe_with_network",
parents = ["@rbe_default//config:platform"],
remote_execution_properties = """
properties: {
name: "dockerNetwork"
value: "standard"
}
{PARENT_REMOTE_EXECUTION_PROPERTIES}
""",
)
filegroup(
name = "package-srcs",
srcs = glob(
["**"],
exclude = [
"bazel-*/**",
".git/**",
],
),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//authentikos:all-srcs",
"//boskos:all-srcs",
"//prow:all-srcs",
"//testgrid:all-srcs",
"//toolbox/branch_pr:all-srcs",
"//toolbox/ci2gubernator:all-srcs",
"//toolbox/deps_update:all-srcs",
"//toolbox/errorfinder:all-srcs",
"//toolbox/fixit:all-srcs",
"//toolbox/githubctl:all-srcs",
"//toolbox/metrics:all-srcs",
"//toolbox/release_note_collector:all-srcs",
"//toolbox/timecomparer:all-srcs",
"//toolbox/util:all-srcs",
"//tools/github_helper:all-srcs",
],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)