-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.yml
176 lines (175 loc) · 3.6 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
name: Docker Compose
description: Run any CI step in isolated Docker containers using Docker Compose
author: https://github.com/buildkite
requirements:
- docker
- docker-compose
configuration:
properties:
run:
type: string
build:
type: [ string, array ]
minimum: 1
push:
type: [ string, array ]
minimum: 1
ansi:
type: boolean
args:
type: [ string, array ]
minimum: 1
build-alias:
type: [ string, array ]
minimum: 1
build-parallel:
type: boolean
buildkit:
type: boolean
cache-from:
type: [ string, array ]
minimum: 1
cli-version:
oneOf:
- type: string
enum: [ "1", "2" ]
- type: integer
enum: [ 1, 2 ]
collapse-logs:
type: boolean
command:
type: array
compatibility:
type: boolean
config:
type: [ string, array ]
minimum: 1
dependencies:
type: boolean
entrypoint:
type: string
env:
type: [ string, array ]
minimum: 1
environment:
type: [ string, array ]
minimum: 1
env-propagation-list:
type: string
expand-volume-vars:
type: boolean
graceful-shutdown:
type: boolean
leave-volumes:
type: boolean
mount-buildkite-agent:
type: boolean
mount-ssh-agent:
type: [ boolean, string ]
mount-checkout:
type: [ boolean, string ]
no-cache:
type: boolean
pre-run-dependencies:
type: boolean
propagate-environment:
type: boolean
propagate-uid-gid:
type: boolean
pull:
type: [ string, array ]
minimum: 1
pull-retries:
type: integer
push-retries:
type: integer
quiet-pull:
type: boolean
rm:
type: boolean
run-labels:
type: boolean
secrets:
type: array
items:
type: string
service-ports:
type: boolean
shell:
type: [ boolean, array ]
skip-checkout:
type: boolean
skip-pull:
type: boolean
ssh:
type: [ boolean, string ]
target:
type: string
tty:
type: boolean
upload-container-logs:
type: string
enum: [ "always", "never", "on-error" ]
use-aliases:
type: boolean
user:
type: string
verbose:
type: boolean
volumes:
type: [ string, array ]
minimum: 1
wait:
type: boolean
workdir:
type: string
anyOf:
- required:
- run
- required:
- build
- required:
- push
additionalProperties: false
dependencies:
ansi: [ run ]
args: [ build ]
build-alias: [ push ]
build-parallel: [ build ]
buildkit: [ build ]
cache-from: [ build ]
command: [ run ]
dependencies: [ run ]
entrypoint: [ run ]
env: [ run ]
env-propagation-list: [ run ]
environment: [ run ]
expand-volume-vars: [ volumes ]
graceful-shutdown: [ run ]
leave-volumes: [ run ]
mount-buildkite-agent: [ run ]
mount-checkout: [ run ]
mount-ssh-agent: [ run ]
no-cache: [ build, run ]
pre-run-dependencies: [ run ]
propagate-environment: [ run ]
propagate-uid-gid: [ run ]
pull: [ run ]
pull-retries: [ run ]
push-retries: [ push ]
quiet-pull: [ run ]
rm: [ run ]
run-labels: [ run ]
service-ports: [ run ]
skip-pull: [ build, run ]
secrets: [ buildkit, build ]
shell: [ run ]
ssh: [ build ]
target: [ build ]
tty: [ run ]
upload-container-logs: [ run ]
use-aliases: [ run ]
user: [ run ]
volumes: [ run ]
wait: [ run ]
workdir: [ run ]