-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yaml
52 lines (50 loc) · 1.24 KB
/
Taskfile.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
version: '3'
includes:
debug:
taskfile: debug/Taskfile.yml
internal: true
envsubst:
taskfile: envsubst/Taskfile.yml
internal: true
hadolint:
taskfile: hadolint/Taskfile.yml
internal: true
prettier:
taskfile: prettier/Taskfile.yml
internal: true
shellcheck:
taskfile: shellcheck/Taskfile.yml
internal: true
shfmt:
taskfile: shfmt/Taskfile.yml
internal: true
tf:
taskfile: tf/Taskfile.yml
internal: true
tools:
taskfile: tools/Taskfile.yml
internal: true
tasks:
build:
deps:
- task: debug:common:build
- task: envsubst:common:build
- task: hadolint:common:build
- task: prettier:common:build
- task: shellcheck:common:build
- task: shfmt:common:build
- task: tf:common:build
- task: tools:common:build
load:
deps:
- task: debug:common:load
- task: envsubst:common:load
- task: hadolint:common:load
- task: prettier:common:load
- task: shellcheck:common:load
- task: shfmt:common:load
- task: tf:common:load
- task: tools:common:load
clean:
cmds:
- find . \( -name '*.cdx' -o -name '*.spdx.json' -o -name '*.tar' -o -name 'packages' \) -print -exec rm -r {} + -depth