-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.dist.yaml
420 lines (358 loc) · 11.8 KB
/
Taskfile.dist.yaml
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
version: '3'
silent: true
output: group
env:
WERF_TEST_K8S_DOCKER_REGISTRY: "localhost:5000"
WERF_TEST_K8S_DOCKER_REGISTRY_USERNAME: "nobody"
WERF_TEST_K8S_DOCKER_REGISTRY_PASSWORD: ""
GO111MODULE: "on"
vars:
version: "0.0.0"
os: '{{OS}}'
arch: '{{ternary "arm64" ARCH (eq ARCH "arm")}}'
binariesExt: '{{if (eq .targetOS "windows")}}.exe{{end}}'
binaryName: 'werf{{.binariesExt}}'
devBinary: './bin/{{.binaryName}}'
package: "github.com/werf/werf/cmd/werf"
cgoTags: "dfrunmount dfssh containers_image_openpgp osusergo exclude_graphdriver_devicemapper netgo no_devmapper static_build"
cgoDevLDFlags: "-linkmode external -extldflags=-static"
cgoReleaseLDFlags: "-linkmode external -extldflags=-static -s -w -X github.com/werf/werf/pkg/werf.Version={{.version}}"
goTags: "dfrunmount dfssh containers_image_openpgp"
goDevLDFlags: ""
goReleaseLDFlags: "-s -w -X github.com/werf/werf/pkg/werf.Version={{.version}}"
tasks:
_format-and-build:
cmds:
- task: format
- task: build
_format-and-lint:
cmds:
- task: format
- task: lint
default:
deps:
- _format-and-build
- _format-and-lint
_build:cgo:dev: &build_cgo_dev
cmds:
- go build -o "{{.outputDir | default (printf "./build/%s-%s" .targetOS .targetArch)}}/{{.binaryName}}"
-compiler gc -ldflags="{{.cgoDevLDFlags}}" -tags="{{.cgoTags}}" {{.CLI_ARGS}} {{.pkg | default .package}}
env:
CGO_ENABLED: "1"
GOOS: "{{.targetOS}}"
GOARCH: "{{.targetArch}}"
CC: "{{.cc}}"
_build:cgo:dist:
<<: *build_cgo_dev
cmds:
- go build -o "{{.outputDir | default (printf "./dist/%s/%s-%s/bin" .version .targetOS .targetArch)}}/{{.binaryName}}"
-compiler gc -ldflags="{{.cgoReleaseLDFlags}}" -tags="{{.cgoTags}}" {{.CLI_ARGS}} {{.pkg | default .package}}
_build:go:dev: &build_go_dev
cmds:
- go build -o "{{.outputDir | default (printf "./build/%s-%s" .targetOS .targetArch)}}/{{.binaryName}}"
-ldflags="{{.goDevLDFlags}}" -tags="{{.goTags}}" {{.CLI_ARGS}} {{.pkg | default .package}}
env:
CGO_ENABLED: "0"
GOOS: "{{.targetOS}}"
GOARCH: "{{.targetArch}}"
_build:go:dist:
<<: *build_go_dev
cmds:
- go build -o "{{.outputDir | default (printf "./dist/%s/%s-%s/bin" .version .targetOS .targetArch)}}/{{.binaryName}}"
-ldflags="{{.goReleaseLDFlags}}" -tags="{{.goTags}}" {{.CLI_ARGS}} {{.pkg | default .package}}
build:
desc: "Build werf dev binary."
run: once
cmds:
- task: build:dev:{{.os}}:{{.arch}}
vars:
outputDir: '{{.outputDir | default "./bin"}}'
build:dev:all:
desc: "Build all werf dev binaries in parallel."
deps:
- build:dev:linux:amd64
- build:dev:linux:arm64
- build:dev:darwin:amd64
- build:dev:darwin:arm64
- build:dev:windows:amd64
build:dist:all:
desc: "Build all werf release binaries in parallel."
deps:
- build:dist:linux:amd64
- build:dist:linux:arm64
- build:dist:darwin:amd64
- build:dist:darwin:arm64
- build:dist:windows:amd64
build:dev:linux:amd64:
desc: "Build werf dev binary for linux/amd64."
cmds:
- task: _build:cgo:dev
vars:
targetOS: "linux"
targetArch: "amd64"
outputDir: "{{.outputDir}}"
build:dist:linux:amd64:
desc: 'Build werf release binary for linux/amd64. Important vars: "version".'
cmds:
- task: _build:cgo:dist
vars:
targetOS: "linux"
targetArch: "amd64"
build:dev:linux:arm64:
desc: "Build werf dev binary for linux/arm64."
cmds:
- task: _build:cgo:dev
vars:
targetOS: "linux"
targetArch: "arm64"
cc: "aarch64-linux-gnu-gcc"
outputDir: "{{.outputDir}}"
build:dist:linux:arm64:
desc: 'Build werf release binary for linux/arm64. Important vars: "version".'
cmds:
- task: _build:cgo:dist
vars:
targetOS: "linux"
targetArch: "arm64"
cc: "aarch64-linux-gnu-gcc"
build:dev:darwin:amd64:
desc: "Build werf dev binary for darwin/amd64."
cmds:
- task: _build:go:dev
vars:
targetOS: "darwin"
targetArch: "amd64"
outputDir: "{{.outputDir}}"
build:dist:darwin:amd64:
desc: 'Build werf release binary for darwin/amd64. Important vars: "version".'
cmds:
- task: _build:go:dist
vars:
targetOS: "darwin"
targetArch: "amd64"
build:dev:darwin:arm64:
desc: "Build werf dev binary for darwin/arm64."
cmds:
- task: _build:go:dev
vars:
targetOS: "darwin"
targetArch: "arm64"
outputDir: "{{.outputDir}}"
build:dist:darwin:arm64:
desc: 'Build werf release binary for darwin/arm64. Important vars: "version".'
cmds:
- task: _build:go:dist
vars:
targetOS: "darwin"
targetArch: "arm64"
build:dev:windows:amd64:
desc: "Build werf dev binary for windows/amd64."
cmds:
- task: _build:go:dev
vars:
targetOS: "windows"
targetArch: "amd64"
outputDir: "{{.outputDir}}"
build:dist:windows:amd64:
desc: 'Build werf release binary for windows/amd64. Important vars: "version".'
cmds:
- task: _build:go:dist
vars:
targetOS: "windows"
targetArch: "amd64"
_test:go-test:cgo:
cmds:
- go test -compiler gc -ldflags="{{.cgoDevLDFlags}}" -tags="{{.cgoTags}}" {{.CLI_ARGS}} {{if not .paths }}{{fail "paths variable required"}}{{end}}{{.paths}}
env:
CGO_ENABLED: "1"
_test:go-test:go:
cmds:
- go test -ldflags="{{.goDevLDFlags}}" -tags="{{.goTags}}" {{.CLI_ARGS}} {{if not .paths }}{{fail "paths variable required"}}{{end}}{{.paths}}
env:
CGO_ENABLED: "0"
test:go-test: &test_go_test
desc: 'Run raw "go test". Important vars: "paths".'
cmds:
- task: _test:go-test:{{ternary "cgo" "go" (eq .os "linux")}}
vars:
paths: "{{.paths}}"
test:unit:
desc: 'Run unit tests. Important vars: "paths".'
cmds:
- ginkgo -p -r {{.CLI_ARGS}} {{.paths | default "./pkg/... ./cmd/..."}}
test:integration:
desc: 'Run integration tests. Important vars: "paths".'
cmds:
- ginkgo -p -r {{.CLI_ARGS}} {{.paths | default "integration/suites"}}
test:e2e:
desc: 'Run all e2e tests. Important vars: "paths".'
cmds:
- ginkgo -p -r {{.CLI_ARGS}} {{.paths | default "test/e2e"}}
test:e2e:simple:
desc: 'Run e2e tests tagged "simple". Important vars: "paths".'
cmds:
- ginkgo -p -r --label-filter=simple {{.CLI_ARGS}} {{.paths | default "test/e2e"}}
test:e2e:complex:
desc: 'Run e2e tests tagged "complex". Important vars: "paths".'
cmds:
- ginkgo -p -r --label-filter=complex {{.CLI_ARGS}} {{.paths | default "test/e2e"}}
test:e2e:extra:
desc: 'Run e2e tests not tagged "simple" or "complex". Important vars: "paths".'
cmds:
- ginkgo -p -r --label-filter="!complex && !simple" {{.CLI_ARGS}} {{.paths | default "test/e2e"}}
format:
desc: 'Run all code formatters. Important vars: "paths".'
run: once
cmds:
- task: format:gci
- task: format:gofumpt
format:gci:
desc: 'Format code with gci. Important vars: "paths".'
cmds:
- gci write -s Standard -s Default -s 'Prefix({{slice (splitList "/" .package) 0 2 | join "/"}})' {{.CLI_ARGS}} {{.paths | default "pkg/ cmd/ test/ integration/"}}
format:gofumpt:
desc: 'Format code with gofumpt. Important vars: "paths".'
cmds:
- gofumpt -extra -w {{.CLI_ARGS}} {{.paths | default "cmd/ pkg/ test/ integration/"}}
lint:
desc: 'Run all linters in parallel. Important vars: "paths".'
deps:
- lint:golangci-lint
lint:golangci-lint:
desc: 'Lint with golangci-lint. Important vars: "paths".'
cmds:
- golangci-lint run {{.CLI_ARGS}} {{.paths | default "./..."}}
doc:
desc: "Run all docs generators, formatters and linters."
cmds:
- task: doc:gen
- task: doc:check-broken-links
doc:gen:
desc: "Regenerate docs."
deps:
- build
cmds:
- ./scripts/docs/regen.sh "{{.devBinary}}"
doc:check-broken-links:
desc: "Check docs for broken links."
deps:
- doc:check-broken-links:ru
- doc:check-broken-links:en
doc:check-broken-links:ru:
desc: "Check ru docs for broken links."
deps:
- build
cmds:
- ./scripts/docs/check_broken_links.sh ru "{{.devBinary}}"
doc:check-broken-links:en:
desc: "Check en docs for broken links."
deps:
- build
cmds:
- ./scripts/docs/check_broken_links.sh main "{{.devBinary}}"
_github:dispatch:
cmds:
- |
curl -sSL 'https://api.github.com/repos/werf/werf/dispatches' \
-H 'Content-Type: application/json' \
-H 'Accept: application/vnd.github.everest-preview+json' \
-H "Authorization: token {{if not .githubToken }}{{fail "githubToken variable required"}}{{end}}{{.githubToken}}" \
--data-raw '{
"event_type": "{{.eventType}}",
"client_payload": {{.clientPayload | default "{}"}}
}' {{.CLI_ARGS}}
trigger:tests:
desc: 'Manually trigger GitHub tests workflow. Important vars: "githubToken".'
cmds:
- task: _github:dispatch
vars:
eventType: 'tests'
trigger:daily-tests:
desc: 'Manually trigger GitHub daily tests workflow. Important vars: "githubToken".'
cmds:
- task: _github:dispatch
vars:
eventType: 'daily_tests'
trigger:tests-cleaner:
desc: 'Manually trigger GitHub tests cleaner workflow. Important vars: "githubToken".'
cmds:
- task: _github:dispatch
vars:
eventType: 'tests_cleaner'
trigger:site-deploy:
desc: 'Manually trigger GitHub site deploy workflow. Important vars: "githubToken".'
cmds:
- task: _github:dispatch
vars:
eventType: 'site-deploy'
_image:build:
cmds:
- docker build {{.CLI_ARGS}} -f "{{.dfilePath}}" -t "{{.imageName}}" "{{.context | default "."}}"
image:build:builder:
desc: 'Build werf builder image. Important vars: "imageName".'
cmds:
- task: _image:build
vars:
dfilePath: scripts/werf-builder/Dockerfile
imageName:
sh: "echo registry-write.werf.io/werf/builder:$(git rev-parse HEAD)"
_image:push:
cmds:
- docker push {{.CLI_ARGS}} "{{.imageName}}"
image:publish:builder:
desc: 'Build and publish werf builder image. Important vars: "imageName".'
deps:
- image:build:builder
cmds:
- task: _image:push
vars:
imageName:
sh: "echo registry-write.werf.io/werf/builder:$(git rev-parse HEAD)"
compose:up:local-telemetry:
desc: "Up local telemetry dev server."
dir: ./scripts/local-telemetry
cmds:
- docker-compose {{.CLI_ARGS}} up -d
compose:down:local-telemetry:
desc: "Down local telemetry dev server."
dir: ./scripts/local-telemetry
cmds:
- docker-compose {{.CLI_ARGS}} down
clean:
desc: "Clean all temporary files and build artifacts."
deps:
- clean:binaries:
clean:binaries:
desc: "Clean all built binaries."
deps:
- clean:binaries:dev
- clean:binaries:dist
clean:binaries:dev:
desc: "Clean built dev binaries."
cmds:
- rm -rf ./bin ./build
clean:binaries:dist:
desc: "Clean built release binaries."
cmds:
- rm -rf ./dist
deps:install:ginkgo:
desc: "Install ginkgo binary."
cmds:
- go install {{.CLI_ARGS}} github.com/onsi/ginkgo/v2/ginkgo@{{.ginkgoVersion | default "v2.1.4"}}
_git:fetch:
run: once
cmds:
- git fetch
sign:
desc: 'Sign last version tag + origin/main and push signatures. Important vars: "refs".'
deps:
- _git:fetch
cmds:
- git signatures pull {{.CLI_ARGS}}
- |
for ref in {{.refs | default "$(git tag --sort=v:refname | tail -n1) origin/main"}}; do
echo Signing $ref...
git signatures add {{.CLI_ARGS}} $ref
git signatures show {{.CLI_ARGS}} $ref
done
- git signatures push {{.CLI_ARGS}}