forked from containers/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zuul.yaml
92 lines (87 loc) · 2.28 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
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
---
- job:
name: unit-test
description: Run Toolbox's unit tests declared in Meson
timeout: 600
files: ['playbooks/*', 'src/*', 'meson.build', 'meson_options.txt', 'meson_post_install.py', '.zuul.yaml']
nodeset:
nodes:
- name: ci-node-34
label: cloud-fedora-34
pre-run: playbooks/setup-env.yaml
run: playbooks/unit-test.yaml
- job:
name: system-test-fedora-rawhide
description: Run Toolbox's system tests in Fedora Rawhide
timeout: 2700
files: &system_test_files [
'data/*',
'playbooks/*',
'profile.d/*',
'src/*',
'test/*',
'meson.build',
'meson_options.txt',
'meson_post_install.py',
'.zuul.yaml',
]
nodeset:
nodes:
- name: ci-node-rawhide
label: cloud-fedora-rawhide
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml
- job:
name: system-test-fedora-36
description: Run Toolbx's system tests in Fedora 36
timeout: 1200
files: *system_test_files
nodeset:
nodes:
- name: ci-node-36
label: cloud-fedora-36
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml
- job:
name: system-test-fedora-35
description: Run Toolbox's system tests in Fedora 35
timeout: 1200
files: *system_test_files
nodeset:
nodes:
- name: ci-node-35
label: cloud-fedora-35
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
files: *system_test_files
nodeset:
nodes:
- name: ci-node-34
label: cloud-fedora-34
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml
- project:
periodic:
jobs:
- system-test-fedora-rawhide
- system-test-fedora-36
- system-test-fedora-35
- system-test-fedora-34
check:
jobs:
- unit-test
- system-test-fedora-rawhide
- system-test-fedora-36
- system-test-fedora-35
- system-test-fedora-34
gate:
jobs:
- unit-test
- system-test-fedora-rawhide
- system-test-fedora-36
- system-test-fedora-35
- system-test-fedora-34