forked from matrix-org/pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeline.yml
72 lines (68 loc) · 2.12 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
steps:
- command:
- "echo '--- Install towncrier'"
- "pip install towncrier"
- "echo '+++ Check newsfile'"
- "python -m towncrier.check --compare-with='origin/main'"
label: ":rolled_up_newspaper: Newsfile"
plugins:
- docker#v3.0.1:
image: "python:3.6"
mount-buildkite-agent: false
branches: "!master !release-*"
- command:
- "echo '--- Install dependencies'"
- "pip install -e ."
- "echo '+++ Run unit tests'"
- "trial tests"
label: ":partyparrot: Unit tests / :python: 3.6"
plugins:
- docker#v3.0.1:
image: "python:3.6"
mount-buildkite-agent: false
artifact_paths:
- "_trial_temp/test.log"
- command:
- "echo '--- Install dependencies'"
- "pip install -e ."
- "echo '--- Install matrix_is_tester'"
- "pip install git+https://github.com/matrix-org/matrix-is-tester.git"
- "echo '+++ Run Tests'"
- "trial matrix_is_tester"
label: ":pytest: matrix_is_tester / :python: 3.6"
timeout_in_minutes: 5
plugins:
- docker#v3.0.1:
image: "python:3.6"
mount-buildkite-agent: false
artifact_paths:
- "matrix_is_test/sydent.stderr"
- "_trial_temp/test.log"
- command:
- "echo '--- Install dependencies'"
- "pip install -e ."
- "echo '+++ Run unit tests'"
- "trial tests"
label: ":partyparrot: Unit tests / :python: 3.9"
plugins:
- docker#v3.0.1:
image: "python:3.9"
mount-buildkite-agent: false
artifact_paths:
- "_trial_temp/test.log"
- command:
- "echo '--- Install dependencies'"
- "pip install -e ."
- "echo '--- Install matrix_is_tester'"
- "pip install git+https://github.com/matrix-org/matrix-is-tester.git"
- "echo '+++ Run Tests'"
- "trial matrix_is_tester"
label: ":pytest: matrix_is_tester / :python: 3.9"
timeout_in_minutes: 5
plugins:
- docker#v3.0.1:
image: "python:3.9"
mount-buildkite-agent: false
artifact_paths:
- "matrix_is_test/sydent.stderr"
- "_trial_temp/test.log"