forked from containers/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zuul.yaml
67 lines (63 loc) · 1.79 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
---
- job:
name: unit-test
description: Run Toolbox's unit tests declared in Meson
timeout: 600
files: ['playbooks/*', 'src/*', 'meson.build', 'meson_options.txt', '.zuul.yaml']
nodeset:
nodes:
- name: ci-node-34
label: cloud-fedora-34-small
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/*', 'meson.build', 'meson_options.txt', '.zuul.yaml']
nodeset:
nodes:
- name: ci-node-rawhide
label: cloud-fedora-rawhide-small
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-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
files: *system_test_files
nodeset:
nodes:
- name: ci-node-34
label: cloud-fedora-34-small
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml
- project:
periodic:
jobs:
- system-test-fedora-rawhide
- system-test-fedora-35
- system-test-fedora-34
check:
jobs:
- unit-test
- system-test-fedora-rawhide
- system-test-fedora-35
- system-test-fedora-34
gate:
jobs:
- unit-test
- system-test-fedora-rawhide
- system-test-fedora-35
- system-test-fedora-34