summaryrefslogtreecommitdiff
path: root/.zuul.yaml
blob: 0a3fe1ab8bb8acf8167e5dd926515a2e9b38dc24 (plain)
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
- job:
    name: liberasurecode-unittests
    parent: unittests
    description: |
      Build and run test and valgrind-test for liberasurecode.
    run: playbooks/unittests/run.yaml

- job:
    name: liberasurecode-unittests-arm64
    parent: liberasurecode-unittests
    nodeset: ubuntu-focal-arm64
    description: |
      Build and run test and valgrind-test for liberasurecode
      on arm64.

- job:
    name: liberasurecode-unittests-centos-7
    parent: liberasurecode-unittests
    nodeset: centos-7
    description: |
      Build and run test and valgrind-test for liberasurecode.
      This job runs on CentOS-7.

- job:
    name: liberasurecode-unittests-centos-8
    parent: liberasurecode-unittests
    nodeset: centos-8
    description: |
      Build and run test and valgrind-test for liberasurecode.
      This job runs on CentOS-8.

- job:
    name: liberasurecode-unittests-centos-8-fips
    parent: liberasurecode-unittests-centos-8
    pre-run: playbooks/enable-fips.yaml
    description: |
      Build and run test and valgrind-test for liberasurecode.
      This job runs on a FIPS-enabled CentOS-8 system.

- job:
    name: liberasurecode-unittests-centos-8-arm64
    parent: liberasurecode-unittests
    nodeset: centos-8-arm64
    description: |
      Build and run test and valgrind-test for liberasurecode.
      This job runs on CentOS-8 on arm64.

- project:
    check:
      jobs:
        - liberasurecode-unittests
        - liberasurecode-unittests-centos-7
        - liberasurecode-unittests-centos-8
        - liberasurecode-unittests-centos-8-fips
    check-arm64:
      jobs:
        - liberasurecode-unittests-arm64:
            voting: false
        - liberasurecode-unittests-centos-8-arm64:
            voting: false
    gate:
      jobs:
        - liberasurecode-unittests
        - liberasurecode-unittests-centos-7
        - liberasurecode-unittests-centos-8
        - liberasurecode-unittests-centos-8-fips