forked from blue-oil/blueoil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lmnet-pipeline.yml
38 lines (38 loc) · 957 Bytes
/
lmnet-pipeline.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
steps:
- command: "make build"
label: "docker build in GPU agent"
agents:
- "agent-type=gpu"
- "env=production"
timeout_in_minutes: "30"
env:
BUILDKITE_CLEAN_CHECKOUT: 'true'
concurrency: 1
concurrency_group: "docker/gpu/${BUILDKITE_COMMIT}"
- command: "make build"
label: "docker build in normal agent"
agents:
- "agent-type=normal"
- "env=production"
timeout_in_minutes: "30"
env:
BUILDKITE_CLEAN_CHECKOUT: 'true'
concurrency: 1
concurrency_group: "docker/normal/${BUILDKITE_COMMIT}"
- wait
- command: "make test-unit-main"
label: "main"
agents:
- "agent-type=gpu"
- "env=production"
timeout_in_minutes: "30"
env:
BUILDKITE_CLEAN_CHECKOUT: 'true'
- command: "make test-blueoil-pep8"
label: "pep8"
agents:
- "agent-type=normal"
- "env=production"
timeout_in_minutes: "30"
env:
BUILDKITE_CLEAN_CHECKOUT: 'true'