-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
266 lines (239 loc) · 7.72 KB
/
build.gradle
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
import org.apache.tools.ant.taskdefs.condition.Os
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.yaml:snakeyaml:2.2'
}
}
//project.afterEvaluate { project.tasks.all { Task t -> t.inputs.file 'build.gradle'; } }
task jobs(type: Exec) {
group = "Pre-build"
description = "Processes the jobs collection by removing unused stuff from their frontmatter for privacy"
afterEvaluate { tasks.build.mustRunAfter jobs }
afterEvaluate { tasks.serve.mustRunAfter jobs }
def script = 'sources/jobs/strip-frontmatter.rb'
def from = 'sources/jobs/'
def to = '_jobs/'
inputs.file script
inputs.dir from
outputs.dir to
logging.captureStandardOutput LogLevel.INFO
commandLine 'ruby', script, from, to
}
task font(type: Exec) {
group = "Pre-build"
description = "Regenerate the custom icon font"
afterEvaluate { tasks.build.mustRunAfter font }
afterEvaluate { tasks.serve.mustRunAfter font }
workingDir 'sources/iconfont'
inputs.file new File(workingDir, 'fontcustom.yml')
inputs.dir new File(workingDir, 'vectors')
outputs.file 'assets/fonts/iconfont.ttf'
outputs.file 'assets/fonts/iconfont.svg'
outputs.file 'assets/fonts/iconfont.woff'
outputs.file 'assets/fonts/iconfont.eot'
outputs.file '_sass/_iconfont.scss'
outputs.file 'sources/iconfont/iconfont-preview.html'
logging.captureStandardOutput LogLevel.INFO
commandLine Os.isFamily(Os.FAMILY_WINDOWS)? 'fontcustom.bat' : 'fontcustom', 'compile'
}
def style = 'styles_feeling_responsive'
def slow = file("assets/css/${style}.scss")
def ignored = file("assets/css/_${style}.scss")
def fast = "assets/css/${style}.css"
def fastSource = file("_site/" + fast)
task fastStyleCopyCachedCSS(type: Copy) {
afterEvaluate { tasks.clean.mustRunAfter fastStyleCopyCachedCSS }
from fastSource
into 'assets/css'
onlyIf {
if (!fastSource.exists()) {
logger.warn("There's no rendered CSS file: ${fastSource}")
return false
}
return true
}
}
task fastStyle(dependsOn: fastStyleCopyCachedCSS) {
group = "Efficiency"
description = "Uses generated CSS from _site instead of compiling from _sass."
afterEvaluate { tasks.build.mustRunAfter fastStyle }
afterEvaluate { tasks.serve.mustRunAfter fastStyle }
onlyIf { fastStyleCopyCachedCSS.state.didWork || fastStyleCopyCachedCSS.state.skipMessage == 'UP-TO-DATE' }
doLast {
if (slow.exists() && ignored.exists() && slow.text == ignored.text) { ignored.delete() }
if (!slow.renameTo(ignored)) { throw new IOException("Cannot rename ${slow} to ${ignored}.") }
}
outputs.upToDateWhen { !slow.exists() && ignored.exists() }
}
task slowStyleRemoveCachedCSS(type: Delete) {
delete fast
onlyIf { slow.exists() || ignored.exists() }
}
task slowStyle(dependsOn: slowStyleRemoveCachedCSS) {
group = "Efficiency"
description = "Generates CSS from _sass."
afterEvaluate { tasks.build.mustRunAfter slowStyle }
afterEvaluate { tasks.serve.mustRunAfter slowStyle }
doLast {
if (!ignored.renameTo(slow)) {
throw new IOException("Cannot rename ${ignored} to ${slow}.")
}
}
outputs.upToDateWhen { !ignored.exists() && slow.exists() }
}
project.afterEvaluate {
task fastDev(dependsOn: [fastStyle, serve, dev, skip]) {
group = "Efficiency"
description = "Daily development task to run in browser for editing content."
}
task fastDevStyle(dependsOn: [slowStyle, serve, dev, skip]) {
group = "Efficiency"
description = "Daily development task to run in browser for editing theme."
}
task preCommit(dependsOn: [slowStyle, clean, jobs, build]) {
group = "Efficiency"
description = "Task to run before commiting to version control."
}
task preCommitServe(dependsOn: [slowStyle, clean, jobs, serve, local]) {
group = "Efficiency"
description = "Task to run before commiting to version control."
}
task rebuild(dependsOn: [slowStyle, clean, jobs, font, build, local]) {
group = "Efficiency"
description = "Rebuild the whole site from scratch."
}
}
task clean(type: Delete) {
group = Jekyll.GROUP
description = "Remove files generated by jekyll build"
delete '.sass-cache', '_site'
}
task build(type: Jekyll) {
description = "Runs jekyll build, use tasks in ${JekyllSetup.GROUP} group to change behavior"
jekyllTask 'build'
mustRunAfter clean
}
task serve(type: Jekyll) {
description = "Start jekyll in serve mode, use tasks in ${JekyllSetup.GROUP} group to change behavior"
jekyllTask 'serve'
mustRunAfter clean
outputs.upToDateWhen { false }
}
task local(type: JekyllSetup) {
description = "Use _config_local.yml overrides"
action = {
it.config '_config_local.yml'
}
}
task dev(type: JekyllSetup, dependsOn: local) {
description = "Use _config_dev.yml overrides and sets JEKYLL_ENV to development"
action = {
it.config '_config_dev.yml'
it.environment 'JEKYLL_ENV', 'development'
}
}
task noskip(type: JekyllSetup) {
description = "Remove --skip-initial-build from serve command (default is ${build.skip? "added" : "removed"})"
action = { it.skip = false }
}
task skip(type: JekyllSetup) {
description = "Add --skip-initial-build to serve command (default is ${build.skip? "added" : "removed"})"
action = { it.skip = true }
noskip.mustRunAfter skip
}
task notrace(type: JekyllSetup) {
description = "Remove --trace argument from jekyll (default is ${build.trace? "added" : "removed"})"
action = { it.trace = false }
}
task trace(type: JekyllSetup) {
description = "Add --trace argument to jekyll (default is ${build.trace? "added" : "removed"})"
action = { it.trace = true }
notrace.mustRunAfter trace
}
task noverbose(type: JekyllSetup) {
description = "Remove --trace argument from jekyll (default is ${build.verbose? "added" : "removed"})"
action = { it.verbose = false }
}
task verbose(type: JekyllSetup) {
description = "Add --trace argument to jekyll (default is ${build.verbose? "added" : "removed"})"
action = { it.verbose = true }
noverbose.mustRunAfter verbose
}
class JekyllSetup extends DefaultTask {
static final GROUP = "Jekyll Param"
@Input
Action<JekyllSetup> action
JekyllSetup() {
group = GROUP
project.afterEvaluate {
project.tasks.withType(Jekyll) { it.mustRunAfter this }
}
}
@TaskAction
void setup() {
project.tasks.withType(Jekyll).all(action)
}
}
class Jekyll extends Exec {
static final GROUP = "Jekyll"
@Input
boolean trace = true
@Input
boolean verbose = false
@Input
boolean skip = false
@Input
boolean incremental = true
@Input
String jekyllTask
private final List<String> configs = ['_config.yml']
Jekyll() {
group = GROUP
def excludes = new org.yaml.snakeyaml.Yaml().load(new File(project.rootDir, '_config.yml').text).exclude
def tree = project.fileTree(dir: project.rootDir)
excludes.each { tree.exclude it }
configs.each { tree.include it }
inputs.files tree
outputs.dir new File(project.rootDir, '_site')
onlyIf { jekyllTask }
if (System.env.JEKYLL_ENV?.trim()) {
environment 'JEKYLL_ENV', System.env.JEKYLL_ENV?.trim()
} else {
environment 'JEKYLL_ENV', 'production'
}
}
@Override protected void exec() {
workingDir = project.file(unsubst(workingDir.path))
commandLine ([Os.isFamily(Os.FAMILY_WINDOWS)? 'bundle.bat' : 'bundle',
'exec',
'jekyll',
jekyllTask,
!configs.isEmpty() ? '--config' : '',
configs.join(','),
trace? '--trace' : '',
verbose? '--verbose' : '',
incremental? '--incremental' : '',
jekyllTask == 'serve' && skip? '--skip-initial-build': ''] + args)
super.exec()
}
void config(String file) {
configs.add file
inputs.file file
}
private static String unsubst(String path) {
if (!Os.isFamily(Os.FAMILY_WINDOWS)) return path
def subst = 'subst'.execute()
def substs = [:]
subst.text.eachLine {
substs[it[0..1]] = it.substring('X:\\: => '.size(), it.size())
}
if (subst.exitValue()) return path
while(path[0..1] in substs) {
path = substs[path[0..1]] + path.substring(2)
}
return path
}
}