-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaskctl.yaml
69 lines (61 loc) · 1.43 KB
/
taskctl.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
import:
- ./build/common/taskctl/contexts.yaml
- ./build/common/taskctl/tasks.yaml
pipelines:
lint:
- task: lint:yaml
- task: lint:terraform:format
- task: lint:terraform:validate
tests:
- task: tests:infra:vendor
- task: tests:infra:run
depends_on:
- tests:infra:vendor
infrastructure:
- task: setup:environment
- task: infra:init
depends_on:
- setup:environment
- task: infra:plan
depends_on:
- infra:init
- task: infra:apply
depends_on:
- infra:plan
infrastructure_destroy:
- task: setup:environment
- task: infra:init
depends_on:
- setup:environment
- task: infra:destroy:plan
depends_on:
- infra:init
- task: infra:destroy:apply
depends_on:
- infra:destroy:plan
app:
- task: setup:environment
- task: infra:init
depends_on: setup:environment
- task: app:install
depends_on: infra:init
- task: app:lint
depends_on: app:install
- task: app:test
depends_on: app:lint
- task: app:local:build
depends_on: app:test
- task: app:build
depends_on: app:local:build
- task: app:deploy
depends_on: app:build
deploy:
- task: deploy:templater
- task: app:deploy
depends_on: deploy:templater
docs:
- task: build:number
- task: _docs
depends_on: build:number
release:
- task: _release