forked from thought-machine/please
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
34 lines (30 loc) · 766 Bytes
/
BUILD
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
filegroup(
name = "version",
srcs = ["VERSION"],
visibility = ["PUBLIC"],
)
filegroup(
name = "changelog",
srcs = ["ChangeLog"],
visibility = ["PUBLIC"],
)
genrule(
name = "bootstrap",
srcs = ["bootstrap.sh"],
outs = ["bootstrap.sh"],
binary = True,
cmd = "sed 's/EXCLUDES=\"\"/EXCLUDES=\"%s\"/' $SRC > $OUT" % CONFIG.get("EXCLUDETEST", ""),
)
filegroup(
name = "install",
srcs = ["install.sh"],
binary = True,
deps = ["//package:installed_files"],
)
# This is used as part of bootstrap, and is used from here to avoid subtle issues with remote execution.
filegroup(
name = "jarcat_unzip",
srcs = ["//tools/jarcat:jarcat_unzip"],
binary = True,
visibility = ["//third_party/go:all"],
)