-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path.zuul.yaml
More file actions
86 lines (79 loc) · 2.55 KB
/
.zuul.yaml
File metadata and controls
86 lines (79 loc) · 2.55 KB
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
- job:
name: liberasurecode-unittests
parent: unittests
description: |
Build and run test for liberasurecode.
pre-run: playbooks/unittests/install-libs-from-source.yaml
run: playbooks/unittests/run.yaml
timeout: 2400
- job:
name: liberasurecode-unittests-memcheck
parent: liberasurecode-unittests
description: |
Build and run memcheck-test for liberasurecode.
dependencies:
# Don't bother doing the more-intensive valgrind checks
# if tests aren't even passing
- liberasurecode-unittests
vars:
make_target: memcheck-test
- job:
name: liberasurecode-unittests-helgrind
parent: liberasurecode-unittests
description: |
Build and run helgrind-test for liberasurecode.
dependencies:
# Don't bother doing the more-intensive valgrind checks
# if tests aren't even passing
- liberasurecode-unittests
vars:
make_target: helgrind-test
- job:
name: liberasurecode-check-symbols
parent: unittests
description: |
Build and run check-symbols for liberasurecode.
run: playbooks/unittests/run.yaml
vars:
make_target: check-symbols
- job:
name: liberasurecode-unittests-arm64
parent: liberasurecode-unittests
nodeset: ubuntu-noble-arm64
description: |
Build and run test and valgrind-test for liberasurecode
on arm64.
- job:
name: liberasurecode-unittests-centos-9-stream
parent: liberasurecode-unittests
nodeset: centos-9-stream
description: |
Build and run test and valgrind-test for liberasurecode.
This job runs on CentOS 9 Stream.
- job:
name: liberasurecode-unittests-centos-9-stream-fips
parent: liberasurecode-unittests-centos-9-stream
pre-run: playbooks/enable-fips.yaml
description: |
Build and run test and valgrind-test for liberasurecode.
This job runs on a FIPS-enabled CentOS 9 Stream system.
- project:
check:
jobs:
- liberasurecode-check-symbols
- liberasurecode-unittests
- liberasurecode-unittests-memcheck
- liberasurecode-unittests-helgrind
- liberasurecode-unittests-centos-9-stream
- liberasurecode-unittests-centos-9-stream-fips
check-arm64:
jobs:
- liberasurecode-unittests-arm64
gate:
jobs:
- liberasurecode-check-symbols
- liberasurecode-unittests
- liberasurecode-unittests-memcheck
- liberasurecode-unittests-helgrind
- liberasurecode-unittests-centos-9-stream
- liberasurecode-unittests-centos-9-stream-fips