summaryrefslogtreecommitdiff
path: root/.gitlab-ci/config.yml
blob: 91c7d59c1c6ff8e9d2d724b543723587ea4ed38c (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
75
76
# 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
#

# The list of all distributions we want to create job for.
distributions:
  - name: fedora
    base_type: fedora
    # The first tier:1 in the list is used to build the pages and check-{tree,patch}
    tier: 1
    versions:
      - '37'
  - name: fedora
    base_type: fedora
    tier: 2
    versions:
      - '36'
      - '38'
  - name: fedora
    base_type: fedora
    tier: 3
    versions:
      - '30'
      - '31'
      - '32'
      - '33'
      - '34'
      - '35'
  - name: ubuntu
    base_type: debian
    tier: 2
    versions:
      - '18.04'
      - '20.04'
      - '22.04'
      - 'devel'
      - 'rolling'
  - name: debian
    base_type: debian
    tier: 2
    versions:
      - '10'
      - '11'
      - 'sid'
  - name: debian
    base_type: debian
    tier: 3
    versions:
      - '9'
      - 'testing'
  - name: centos
    base_type: fedora
    tier: 2
    versions:
      - '7.5.1804'
      - '7.9.2009'
      - '8.1.1911'
      - '8.3.2011'
  - name: centos
    base_type: fedora
    tier: 3
    versions:
      - '7.6.1810'
      - '7.7.1908'
      - '7.8.2003'
      - '8.2.2004'
  - name: alpine
    base_type: alpine
    tier: 2
    versions:
      - 'latest'