-
Notifications
You must be signed in to change notification settings - Fork 140
/
plugin.yml
executable file
·222 lines (221 loc) · 4.63 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
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
builder:
type: object
properties:
bootstrap:
type: boolean
create:
type: boolean
debug:
type: boolean
driver:
type: string
enum: [ "docker-container", "kubernetes", "remote" ]
driver-opt:
type: string
keep-daemon:
type: boolean
keep-state:
type: boolean
name:
type: string
platform:
type: string
remote-address:
type: string
remove:
type: boolean
use:
type: boolean
additionalProperties: false
build-labels:
type: [ string, array ]
minimum: 1
build-parallel:
type: boolean
buildkit:
type: boolean
buildkit-inline-cache:
type: boolean
cache-from:
type: [ string, array ]
minimum: 1
cache-to:
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
prebuilt-image-namespace:
type: string
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
require-prebuild:
type: boolean
rm:
type: boolean
run-image:
type: string
run-labels:
type: boolean
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
with-dependencies:
type: boolean
workdir:
type: string
anyOf:
- required:
- run
- required:
- build
- required:
- push
additionalProperties: false
dependencies:
ansi: [ run ]
args: [ build ]
build-alias: [ push ]
build-labels: [ build ]
build-parallel: [ build ]
buildkit: [ build ]
buildkit-inline-cache: [ build ]
cache-from: [ build ]
cache-to: [ 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 ]
require-prebuild: [ run ]
rm: [ run ]
run-image: [ run ]
run-labels: [ run ]
service-ports: [ run ]
skip-pull: [ build, run ]
shell: [ run ]
ssh: [ build ]
target: [ build ]
tty: [ run ]
upload-container-logs: [ run ]
use-aliases: [ run ]
user: [ run ]
volumes: [ run ]
wait: [ run ]
with-dependencies: [ build ]
workdir: [ run ]