about summary refs log tree commit diff
path: root/.gitlab-ci/config.yml
blob: 4e97ecf187cbc7595bb15947739843a59c009925 (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
67
68
69
70
71
72
73
74
# This file contains the configuration for the gitlab ci.
#
# To recreate the .gitlab-ci.yml file, run
#   ci-fairy generate-template
#
# The ci-fairy tool is part of
# https://gitlab.freedesktop.org/freedesktop/ci-templates
#

# Some distros are fairly similar, and we reuse similar scripts.
# The base type maps the distro name to their base.
base_types:
  fedora: fedora
  centos: fedora
  debian: debian
  ubuntu: debian
  alpine: alpine

# The list of all distributions we want to create job for.
distributions:
  # TIER 1: CI run for all MRs.
  # The first tier:1 in the list is used to build the pages and check-{tree,patch}.
  - name: fedora
    tier: 1
    versions:
      - '40'
      - rawhide
  - name: centos
    tier: 1
    versions:
      - 'stream9'

  # TIER 2: distribution versions that will or might use the current NM version.
  # Run when doing a release.
  - name: debian
    tier: 2
    versions:
      - sid
      - testing
  - name: ubuntu
    tier: 2
    versions:
      - devel
  - name: alpine
    tier: 2
    versions:
      - edge
  
  # TIER 3: distribution versions not in EOL but don't use the current NM version.
  # Run when doing a release, but a failure won't be blocking for the release.
  - name: fedora
    tier: 3
    versions:
      - '39'
  - name: ubuntu
    tier: 3
    versions:
      - '20.04'
      - '22.04'
      - '24.04'
      - 'rolling' # latest non-LTS
  - name: debian
    tier: 3
    versions:
      - 'stable'
      - 'oldstable'
  - name: centos
    tier: 3
    versions:
      - 'stream8'
  - name: alpine
    tier: 3
    versions:
      - 'latest'