forked from bugcrowd/test-summary-buildkite-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.yml
71 lines (71 loc) · 1.51 KB
/
plugin.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Test Summary
description: Collates test results as a buildkite annotation
author: "@tessereth"
requirements:
- docker
configuration:
properties:
inputs:
type: array
items:
type: object
properties:
label:
type: string
artifact_path:
type: string
type:
type: string
enum:
- junit
- checkstyle
- tap
- oneline
encoding:
type: string
strip_colors:
type: boolean
message:
type: boolean
details:
type: boolean
crop:
type: object
properties:
start:
type: number
end:
type: number
summary:
type: object
properties:
format:
type: string
details_regex:
type: string
additionalProperties: false
required:
- label
- artifact_path
- type
additionalProperties: false
formatter:
type: object
properties:
type:
type: string
enum:
- summary
- details
show_first:
type: number
additionalProperties: false
context:
type: string
style:
type: string
fail_on_error:
type: boolean
required:
- inputs
additionalProperties: false