-
Notifications
You must be signed in to change notification settings - Fork 5
/
taskctl.yaml
47 lines (41 loc) · 935 Bytes
/
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
import:
- ./build/taskctl/contexts.yaml
- ./build/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
docs:
- task: build:number
- task: _docs
depends_on: build:number
release:
- task: _release