-
Notifications
You must be signed in to change notification settings - Fork 59
/
BUILD
88 lines (78 loc) · 2 KB
/
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
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
load("@rules_pkg//pkg:tar.bzl", "pkg_tar")
load("//scripts:jekyll.bzl", "jekyll_build")
# Required to move the file from the external repo's execroot location
# to the _sass location expected by the local css/main.scss imports.
genrule(
name = "style-common",
srcs = ["@bazel_website//:_sass/style.scss"],
outs = ["_sass/style.scss"],
cmd = "cp $< $@",
)
filegroup(
name = "jekyll-srcs",
srcs = glob(
["**/*"],
exclude = [
".git/**",
"bazel-*/**",
"BUILD",
"WORKSPACE",
"scripts/**",
"*.swp",
"LICENSE",
"CONTRIBUTING.md",
"production/**",
"README.md",
],
) + [":style-common"],
)
pkg_tar(
name = "jekyll-files",
srcs = [":jekyll-srcs"],
strip_prefix = ".",
)
pkg_tar(
name = "bootstrap-css",
srcs = ["//third_party/css/bootstrap:bootstrap_css"],
package_dir = "assets",
strip_prefix = "/third_party/css/bootstrap",
)
pkg_tar(
name = "bootstrap-images",
srcs = ["//third_party/css/bootstrap:bootstrap_images"],
package_dir = "assets",
strip_prefix = "/third_party/css/bootstrap",
)
pkg_tar(
name = "font-awesome-css",
srcs = ["//third_party/css/font_awesome:font_awesome_css"],
package_dir = "assets",
strip_prefix = "/third_party/css/font_awesome",
)
pkg_tar(
name = "font-awesome-font",
srcs = ["//third_party/css/font_awesome:font_awesome_font"],
package_dir = "assets",
strip_prefix = "/third_party/css/font_awesome",
)
pkg_tar(
name = "bootstrap-js",
srcs = ["//third_party/javascript/bootstrap:bootstrap_js"],
package_dir = "assets",
strip_prefix = "/third_party/javascript/bootstrap",
)
pkg_tar(
name = "jekyll-tree",
deps = [
":bootstrap-css",
":bootstrap-images",
":bootstrap-js",
":font-awesome-css",
":font-awesome-font",
":jekyll-files",
],
)
jekyll_build(
name = "site",
srcs = [":jekyll-tree"],
)