forked from containers/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zuul.yaml
62 lines (58 loc) · 1.49 KB
/
.zuul.yaml
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
---
- job:
name: unit-test
description: Run Toolbox's unit tests declared in Meson
timeout: 300
nodeset:
nodes:
- name: ci-node-33
label: cloud-fedora-33-small
run: playbooks/unit-test.yaml
- job:
name: system-test-fedora-33
description: Run Toolbox's system tests in Fedora 33
timeout: 1200
nodeset:
nodes:
- name: ci-node-33
label: cloud-fedora-33-small
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml
- job:
name: system-test-fedora-34
description: Run Toolbox's system tests in Fedora 34
timeout: 1200
nodeset:
nodes:
- name: ci-node-34
label: cloud-fedora-34-small
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml
- job:
name: system-test-fedora-rawhide
description: Run Toolbox's system tests in Fedora Rawhide
timeout: 1200
nodeset:
nodes:
- name: ci-node-rawhide
label: cloud-fedora-rawhide-small
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml
- project:
periodic:
jobs:
- system-test-fedora-33
- system-test-fedora-34
- system-test-fedora-rawhide
check:
jobs:
- unit-test
- system-test-fedora-33
- system-test-fedora-34
- system-test-fedora-rawhide
gate:
jobs:
- unit-test
- system-test-fedora-33
- system-test-fedora-34
- system-test-fedora-rawhide