-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathBUILD.bazel
More file actions
147 lines (128 loc) · 3.97 KB
/
Copy pathBUILD.bazel
File metadata and controls
147 lines (128 loc) · 3.97 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
load("@bazel_lib//:bzl_library.bzl", "bzl_library")
load("@bazel_lib//lib:copy_to_bin.bzl", "copy_to_bin")
load("@bazel_lib_host//:defs.bzl", "host")
load("@bazel_skylib//rules:copy_file.bzl", "copy_file")
load("@bazel_skylib//rules:write_file.bzl", "write_file")
load("@buildifier_prebuilt//:rules.bzl", "buildifier")
load("@gazelle//:def.bzl", "DEFAULT_LANGUAGES", "gazelle", "gazelle_binary")
load("//lib:diff_test.bzl", "diff_test")
load("//lib:testing.bzl", "assert_contains")
load("//lib:write_source_files.bzl", "write_source_files")
exports_files([".shellcheckrc"])
# gazelle:prefix github.com/bazel-contrib/bazel-lib
gazelle_binary(
name = "gazelle_bin",
languages = select({
# TODO: under bzlmod we get go linking errors when adding
# the skylib gazelle plugin.
# https://github.com/bazelbuild/rules_go/issues/1877
"@bazel_lib//lib:bzlmod": DEFAULT_LANGUAGES,
"//conditions:default": DEFAULT_LANGUAGES + [
"@bazel_skylib_gazelle_plugin//bzl",
],
}),
)
gazelle(
name = "gazelle",
gazelle = "gazelle_bin",
mode = "fix",
)
gazelle(
name = "gazelle.check",
gazelle = "gazelle_bin",
mode = "diff",
)
gazelle(
name = "gazelle_update_repos",
args = [
"-build_file_proto_mode=disable_global",
"-from_file=go.mod",
"-to_macro=deps.bzl%go_dependencies",
"-prune",
],
command = "update-repos",
)
# This library manipulates external repository paths and canonical repository
# names, so the warnings against writing them are expected here.
LINT_WARNINGS = [
"-canonical-repository",
"-external-path",
]
buildifier(
name = "buildifier",
exclude_patterns = ["./.git/*"],
lint_mode = "fix",
lint_warnings = LINT_WARNINGS,
mode = "fix",
tags = ["manual"], # tag as manual so windows ci does not build it by default
)
buildifier(
name = "buildifier.check",
exclude_patterns = ["./.git/*"],
lint_mode = "warn",
lint_warnings = LINT_WARNINGS,
mode = "diff",
tags = ["manual"], # tag as manual so windows ci does not build it by default
)
alias(
name = "format",
actual = "//tools/format",
tags = ["manual"], # tag as manual so windows ci does not build it by default
)
# write_source_files() to a git ignored subdirectory of the root
genrule(
name = "write_source_file_root",
outs = ["write_source_file-root_directory/test.txt"],
cmd = "mkdir -p $$(dirname $@) && echo 'test' > $@",
visibility = ["//visibility:private"],
)
write_source_files(
name = "write_source_file_root-test",
diff_test = False,
files = {
"test-out/dist/write_source_file_root-test/test.txt": ":write_source_file_root",
"test-out/dist/write_source_file_root-test_b/test.txt": ":write_source_file_root",
},
)
# Test case: diff_test with a file in a directory prefixed with "external"
# stamped in the root package
write_file(
name = "file_in_external_prefixed_dir",
out = "external-dir/foo.txt",
content = ["foo"],
)
copy_file(
name = "copy_of_file_in_external_prefixed_dir",
src = "external-dir/foo.txt",
out = "foo_copy.txt",
)
diff_test(
name = "case_file_has_external_prefix",
file1 = "external-dir/foo.txt",
file2 = "foo_copy.txt",
)
assert_contains(
name = "bazel_version_test",
actual = ".bazelversion",
expected = str(host.bazel_version),
# TODO: Enable this for windows
target_compatible_with = [] if host.bazel_version.startswith("7") and not host.is_windows else ["@platforms//:incompatible"],
)
bzl_library(
name = "bzl_library",
srcs = ["bzl_library.bzl"],
deps = ["@bazel_skylib//:bzl_library"],
)
# Place the .vale.ini file in bazel-bin so the relative path it contains
# StylesPath = tools/lint/vale
# will work when it's run as an action.
copy_to_bin(
name = ".vale_ini",
srcs = [".vale.ini"],
visibility = ["//visibility:public"],
)
filegroup(
name = "markdown_files",
srcs = glob(["*.md"]),
tags = ["markdown"],
)