generated from snivilised/arcadia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
339 lines (282 loc) · 9.14 KB
/
Taskfile.yml
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
version: "3"
silent: true
dotenv: [".env"]
vars:
FORMAT: json
BINARY_NAME: pixa
DEPLOY_DIR: ./src/i18n/deploy
OUT_DIR: ./src/i18n/out
DIST_DIR: ./dist
#
SOURCE_LANG: en-GB
SOURCE_ACTIVE: "active.{{.SOURCE_LANG}}.{{.FORMAT}}"
SOURCE_ACTIVE_FILE: "{{.OUT_DIR}}/active.{{.SOURCE_LANG}}.{{.FORMAT}}"
DEFAULT_ACTIVE: "{{.BINARY_NAME}}.{{.SOURCE_ACTIVE}}"
DEFAULT_ACTIVE_FILE: "{{.OUT_DIR}}/{{.DEFAULT_ACTIVE}}"
EXTRACT_ACTIVE: "active.{{.SOURCE_LANG}}.{{.FORMAT}}"
EXTRACT_NAME: active.{{.SOURCE_LANG}}.{{.FORMAT}}
#
LANGUAGE_US: en-US
US_OUT_DIR: "{{.OUT_DIR}}/{{.LANGUAGE_US}}"
ACTIVE_US: "{{.BINARY_NAME}}.active.en-US.{{.FORMAT}}"
TRANSLATE_US: "{{.BINARY_NAME}}.translate.en-US.{{.FORMAT}}"
TRANSLATE_US_FILE: "{{.US_OUT_DIR}}/{{.TRANSLATE_US}}"
tasks:
# === build =================================================
c:
cmds:
- task: clean-dist
clean-dist:
cmds:
- cmd: rm -rf {{.DIST_DIR}}/*
# NB: this clean task is very aggressive. It will not only remove
# old versions of packages, it removes all of them, even the
# current versions in use. You can use the download task to
# refresh the pkg cache.
#
clean:
cmds:
- go clean
clean-t:
cmds:
- go clean -testcache
build_generic:
vars:
APPLICATION_ENTRY: ./src/app/main
SRC_CODE: ./src
cmds:
- echo "cross compiling from {{OS}} to {{.TARGET_OS}}"
- GOOS={{.TARGET_OS}} GOARCH={{.TARGET_ARCH}} go build -o {{.DIST_DIR}}/{{.TARGET_OS}}/{{.BINARY_NAME}}{{.BINARY_EXT}} -v {{.APPLICATION_ENTRY}}
sources:
- ./src/**/*.go
generates:
- "{{.DIST_DIR}}/{{.TARGET_OS}}/{{.BINARY_NAME}}{{.BINARY_EXT}}"
bw:
cmds:
- task: build-w
bm:
cmds:
- task: build-m
build-w:
cmds:
- task: build_generic
vars: { TARGET_OS: windows, TARGET_ARCH: amd64, BINARY_EXT: .exe }
build-l:
cmds:
- task: build_generic
vars: { TARGET_OS: linux, TARGET_ARCH: amd64 }
build-m:
cmds:
- task: build_generic
vars: { TARGET_OS: darwin, TARGET_ARCH: amd64 }
# === mod-cache =============================================
clean-cache:
cmds:
- go clean -modcache
download:
cmds:
- go mod download
# === test ==================================================
t:
cmds:
- go test ./...
# === deploy ================================================
dw:
cmds:
- task: deploy-w
dm:
cmds:
- task: deploy-m
# currently, this is hardcoded for windows
#
deploy-w:
vars:
BINARY_EXT: .exe
TARGET_OS: windows
DEPLOY_BINARY: "{{.DIST_DIR}}/{{.TARGET_OS}}/{{.BINARY_NAME}}{{.BINARY_EXT}}"
DEPLOY_US: "{{.DEPLOY_DIR}}/{{.ACTIVE_US}}"
cmds:
- echo "deploying to location (.env) DEPLOY_TO ==> '$DEPLOY_TO'"
- /bin/cp -f {{.DEPLOY_BINARY}} $DEPLOY_TO
- /bin/cp -f {{.DEPLOY_DIR}}/{{.ACTIVE_US}} $DEPLOY_TO
generates:
- $DEPLOY_TO/{{.DEPLOY_BINARY}}
- $DEPLOY_TO/{{.ACTIVE_US}}
preconditions:
- test $DEPLOY_TO
- test -f {{.DEPLOY_BINARY}}
- test -f {{.DEPLOY_DIR}}/{{.ACTIVE_US}}
# currently, this is hardcoded for mac. these deploy tasks need to be improved
# to remove the duplicated code
#
deploy-m:
vars:
TARGET_OS: darwin
DEPLOY_BINARY: "{{.DIST_DIR}}/{{.TARGET_OS}}/{{.BINARY_NAME}}"
DEPLOY_US: "{{.DEPLOY_DIR}}/{{.ACTIVE_US}}"
cmds:
- echo "deploying to location (.env) DEPLOY_TO ==> '$DEPLOY_TO'"
- /bin/cp -f {{.DEPLOY_BINARY}} $DEPLOY_TO
- /bin/cp -f {{.DEPLOY_DIR}}/{{.ACTIVE_US}} $DEPLOY_TO
generates:
- $DEPLOY_TO/{{.DEPLOY_BINARY}}
- $DEPLOY_TO/{{.ACTIVE_US}}
preconditions:
- test $DEPLOY_TO
- test -f {{.DEPLOY_BINARY}}
- test -f {{.DEPLOY_DIR}}/{{.ACTIVE_US}}
tbw:
cmds:
- task: t
- task: bw
- task: dw
tbm:
cmds:
- task: t
- task: bm
- task: dm
# === ginkgo ================================================
# initialise a test suite for a package. (only 1 per package)
boot:
cmds:
- ginkgo bootstrap
# run tests suites recursive
g:
cmds:
- ginkgo -r
# invoke as task gen -- <item>
gl:
cmds:
- ginkgo -r --label-filter={{.CLI_ARGS}}
# run tests suites recursive with verbose
gv:
cmds:
- ginkgo -r -v
# generate a test file for the item provided (item_test.go)
# invoke as task gen -- <item>
gen:
cmds:
- ginkgo generate {{.CLI_ARGS}}
dry:
cmds:
- ginkgo -v --dry-run ./...
# === watch ================================================
watchv:
cmds:
- ginkgo watch -v -r -p ./...
watch:
cmds:
- ginkgo watch -r -p ./...
# === lint =================================================
lint:
cmds:
- golangci-lint run
lintv:
cmds:
- golangci-lint run -v
# === coverage =============================================
cover:
cmds:
- goveralls -repotoken {{.COVERALLS_TOKEN}}
# === i18n =================================================
clear:
cmds:
- rm ./{{.OUT_DIR}}/* --recursive
# extract: scans for i18m messages in source code
# - creates empty out/l10n/pixa.translate.en-US.json
# - extracts messages into out/active.en-GB.json
#
extract:
cmds:
- goi18n extract
-format {{.FORMAT}}
-sourceLanguage {{.SOURCE_LANG}}
-outdir {{.OUT_DIR}}
- echo "✨ Extract from source language {{.SOURCE_LANG}} => Created:"
- echo "---> 📜 {{.OUT_DIR}}/{{.EXTRACT_ACTIVE}}"
# newt: new translation:
#
newt:
deps: [extract]
cmds:
- test -d {{.US_OUT_DIR}} || mkdir {{.US_OUT_DIR}}
- touch {{.US_OUT_DIR}}/{{.TRANSLATE_US}}
- echo "💦 Generate empty translate file for {{.LANGUAGE_US}} => Created:"
- echo "---> 📜 {{.US_OUT_DIR}}/{{.TRANSLATE_US}}"
# merge: derive a translation from the default
# we pass the source file (EXTRACT_ACTIVE) as well as the empty
# translation file (TRANSLATE_US) into the merge
# This creates 2 files per language:
#
# xx-yy.active.format
# This file contains messages that should be loaded at runtime.
#
# xx-yy.translate.format
# This file contains messages which should be translated.
#
# When you merge, you can't control the name of the active/translate files, so
# don't rename them, leave as is and do any renaming at the end
#
merge:
cmds:
- goi18n merge
-format {{.FORMAT}}
-sourceLanguage {{.SOURCE_LANG}}
-outdir ./{{.OUT_DIR}}
"{{.SOURCE_ACTIVE_FILE}}"
"{{.TRANSLATE_US_FILE}}"
- echo "🌐 running merge with files:"
- echo "---> input file📜 {{.SOURCE_ACTIVE}}"
- echo "---> input file📜 {{.TRANSLATE_US_FILE}}"
- echo "🤖 Generate files for {{.LANGUAGE_US}} => Created:"
- echo "---> 📜 active.en-US.{{.FORMAT}} (this contains null doc {})"
- echo "---> 📜 translate.en-US.{{.FORMAT}} (creates the pre-translate doc with hashes)"
# update existing translations
# after running this task, the translation file generated will
# contain only the new translations. Update the active file,
# with the new translations. Also, need to copy the default
# file (active.en-GB.json) back into ./i18n/default
#
# creates ./src/i18n/out/en-US/translate.en-US.json: this is the
# file to be translated. This contains hashes and also contains
# all messages, not just the ones added.
# It is useful to keep all the out file also checked in because, what we
# can do is perform the extract, this generates the out/active/active.en-GB.json
# file, but it contains all the messages not just the new ones. Because we
# have checked it in, we can see the delta. You can just delete the existing
# messages which leaves you with just the new ones. Then we can you this to
# merge in with the previous active file.
#
# copy the source active delta file into out/en-US/translate.en-US.json file,
# then pass this to your translator. This file will contain the new translated
# messages.
#
# The process of updating existing translation still needs some work as it
# is still not understood and the goi18n documentation is severely lacking
# when it comes to the process. I will aim to improve this as my understanding
# improves after experience.
#
# For now, the merge of new translations with existing ones should be done
# manually.
#
update:
deps: [extract]
cmds:
- goi18n merge
-format {{.FORMAT}}
-sourceLanguage {{.SOURCE_LANG}}
-outdir {{.US_OUT_DIR}}
"{{.SOURCE_ACTIVE_FILE}}"
"{{.US_OUT_DIR}}/{{.TRANSLATE_US}}"
# run this after manual translation has occurred to integrate it
# back into the translation file. Unfortunately, this task doesn't
# work properly, because it does not include the hashes. Without
# this task, the new translations must be manually added to the active
# translation file (active.en-US.json).
accept:
cmds:
- goi18n merge
-format {{.FORMAT}}
-sourceLanguage "en-US"
-outdir ./i18n/temp
./{{.OUT_DIR}}/{{.TRANSLATE_US}} {{.DEPLOY_DIR}}/{{.ACTIVE_US}}