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

# We're happy to rebuild all containers when one changes.
.default_tag: &default_tag '2022-05-30.0'


# The list of all distributions we want to create job for.
# The template generates manual jobs for all these.
distributions:
  - name: fedora
    tag: *default_tag
    base_type: fedora
    versions:
      - '30'
      - '31'
      - '32'
      - '33'
      - '34'
      - '35'
      - '36'
      - '37'
  - name: ubuntu
    tag: *default_tag
    base_type: debian
    versions:
      - '16.04'
      - '18.04'
      - '20.04'
      - '22.04'
      - 'devel'
      - 'rolling'
  - name: debian
    tag: *default_tag
    base_type: debian
    versions:
      - '9'
      - '10'
      - '11'
      - 'testing'
      - 'sid'
  - name: centos
    tag: *default_tag
    base_type: fedora
    versions:
      - '7.5.1804'
      - '7.6.1810'
      - '7.7.1908'
      - '7.8.2003'
      - '7.9.2009'
      - '8.1.1911'
      - '8.2.2004'
      - '8.3.2011'
  - name: alpine
    tag: *default_tag
    base_type: alpine
    versions:
      - 'latest'

# specifies which of the above distros is used as source for pages
pages_build:
  name: fedora
  version: '35'