forked from blue-oil/blueoil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlmnet-pipeline.yml
55 lines (55 loc) · 1.33 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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-unit-inference"
label: "inference"
agents:
- "agent-type=normal"
- "env=production"
timeout_in_minutes: "30"
env:
BUILDKITE_CLEAN_CHECKOUT: 'true'
- command: "make test-lint"
label: "pep8"
agents:
- "agent-type=container"
- "env=production"
timeout_in_minutes: "30"
env:
BUILDKITE_CLEAN_CHECKOUT: 'true'
- command: "make test-mypy"
label: "mypy"
agents:
- "agent-type=container"
- "env=production"
timeout_in_minutes: "5"
env:
BUILDKITE_CLEAN_CHECKOUT: 'true'
soft_fail: true