-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.yml
153 lines (153 loc) · 3.11 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
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
buildkit:
type: boolean
cache-from:
type: [ string, array ]
minimum: 1
compatibility:
type: boolean
cli-version:
oneOf:
- type: string
enum: [ "1", "2" ]
- type: integer
enum: [ 1, 2 ]
command:
type: array
config:
type: [ string, array ]
minimum: 1
dependencies:
type: boolean
entrypoint:
type: string
env:
type: [ string, array ]
minimum: 1
environment:
type: [ string, array ]
minimum: 1
expand-volume-vars:
type: boolean
image-repository:
type: string
image-name:
type: [ string, array ]
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
rm:
type: boolean
run-labels:
type: boolean
separator-cache-from:
type: string
minLength: 1
maxLength: 1
service-ports:
type: boolean
skip-checkout:
type: boolean
skip-pull:
type: boolean
ssh:
type: [ boolean, string ]
secrets:
type: array
items:
type: string
target:
type: string
tty:
type: boolean
upload-container-logs:
type: string
use-aliases:
type: boolean
verbose:
type: boolean
volumes:
type: [ string, array ]
minimum: 1
workdir:
type: string
anyOf:
- required:
- run
- required:
- build
- required:
- push
additionalProperties: false
dependencies:
ansi: [ run ]
buildkit: [ build ]
cache-from: [ build ]
cache-from-separator: [ cache-from ]
dependencies: [ run ]
env: [ run ]
environment: [ run ]
expand-volume-vars: [ volumes ]
image-repository: [ build ]
image-name: [ build ]
leave-volumes: [ run ]
mount-buildkite-agent: [ run ]
mount-checkout: [ run ]
pre-run-dependencies: [ run ]
propagate-uid-gid: [ run ]
pull: [ run ]
push-retries: [ push ]
service-ports: [ run ]
skip-pull: [ build, run ]
secrets: [ buildkit, build ]
ssh: [ buildkit ]
target: [ build ]
tty: [ run ]
use-aliases: [ run ]
user: [ run ]
volumes: [ run ]
wait: [ run ]
workdir: [ run ]