This repository has been archived by the owner on Sep 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
BUILD
111 lines (98 loc) · 2.48 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
load("@rules_pkg//:pkg.bzl", "pkg_tar")
load("//:redirects.bzl", "BAZEL_SITE_REDIRECTS")
load("//:site.bzl", "site_tar")
load("//scripts:jekyll.bzl", "jekyll_build")
sh_binary(
name = "build-jekyll-tree",
srcs = ["build-jekyll-tree.sh"],
)
filegroup(
name = "jekyll-srcs",
srcs = glob(
["**/*"],
exclude = [
".git/**",
"bazel-*/**",
"BUILD",
"WORKSPACE",
"scripts/**",
"*.swp",
"*.sh",
"LICENSE",
"CONTRIBUTING",
"production/**",
"README.md",
"*.bzl",
],
),
)
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 = "instantsearch-css",
srcs = ["//third_party/css/instantsearch:instantsearch_css"],
package_dir = "assets",
strip_prefix = "/third_party/css/instantsearch",
)
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 = "instantsearch-js",
srcs = ["//third_party/javascript/instantsearch:instantsearch_js"],
package_dir = "assets",
strip_prefix = "/third_party/javascript/instantsearch",
)
pkg_tar(
name = "jekyll-base",
deps = [
":bootstrap-css",
":bootstrap-images",
":bootstrap-js",
":font-awesome-css",
":font-awesome-font",
":instantsearch-css",
":instantsearch-js",
":jekyll-files",
],
)
site_tar(
name = "jekyll-tree",
src = ":jekyll-base",
redirects = BAZEL_SITE_REDIRECTS,
)
jekyll_build(
name = "site",
srcs = [":jekyll-tree"],
bucket = "www.bazel.build",
)