-
Notifications
You must be signed in to change notification settings - Fork 76
/
task.yml
57 lines (46 loc) · 1.47 KB
/
task.yml
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
---
platform: linux
image_resource:
type: registry-image
source:
repository: cloudfoundry/cf-deployment-concourse-tasks
tag: latest
inputs:
- name: cf-deployment-concourse-tasks
- name: cf-acceptance-tests
- name: integration-config
- name: cf-cli
optional: true
# - Input to run your own cf-cli binary
outputs:
- name: cats-trace-output
run:
path: cf-deployment-concourse-tasks/run-cats/task
params:
NODES: 12
# - Optional
# - Number of parallel ginkgo nodes.
CONFIG_FILE_PATH: integration_config.json
# - Optional
# - Path to the CATs integration configuration file.
# - The path is relative to the `integration-config` input.
REPORTER_CONFIG_FILE_PATH: reporter_config.json
# - Optional
# - Path to the CATs reporter configuration file.
# - The path is relative to the `integration-config` input.
# - If this file exists, it will automatically be combined with the config file above.
# - The intent is to allow for the configuration of a CATs' custom reporter.
SKIP_REGEXP:
# - Optional
# - A regular expression to be passed to the ginkgo's `-skip` flag.
# - If set, ginkgo will skip tests that match this regular experession.
CAPTURE_LOGS: false
# - Optional
# - If set to `true`, the task will capture logs and save them
# to the output directory
FLAKE_ATTEMPTS: 2
# - Optional
# - The number of times to retry a single failed test
TIMEOUT: 2h
# - Optional
# - Timeout for the entire test run, as a Golang time.Duration.