-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaskctl.yaml
46 lines (41 loc) · 981 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
import:
- ./build/taskctl/contexts.yaml
- ./build/taskctl/tasks.yaml
pipelines:
docs:
- task: _docs
tests:
- task: tests:unit
allow_failure: true
- task: tests:coverage_report
depends_on:
- tests:unit
- task: tests:fail_on_error
depends_on:
- tests:coverage_report
build:
- task: setup:environment
- task: generate
depends_on:
- setup:environment
release:
- task: setup:environment
# TODO: Re-enable when we have a new Influx
# - task: update:dashboard
# depends_on:
# - setup:environment
- task: publish:github
depends_on:
- setup:environment
all:
- task: clean
- pipeline: docs
depends_on:
- clean
- pipeline: tests
depends_on:
- clean
- pipeline: build
depends_on:
- clean
# NB: `release` is not declared here, as it must be run as a discrete pipeline to ensure tests/etc. are passed.