mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-30 21:20:10 +01:00
Switching to Fedora 43 changes the formatting. As Fedora 43 is not released yet, it might still update clang-format and make it to change again, as it happened in the past with other versions of Fedora. Keep F42 until F43 is more stable.
77 lines
1.6 KiB
YAML
77 lines
1.6 KiB
YAML
# 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:
|
|
- '42'
|
|
|
|
# TIER 2: distribution versions that will or might use the current NM version.
|
|
# Run when doing a release.
|
|
- name: fedora
|
|
tier: 2
|
|
versions:
|
|
- 'rawhide'
|
|
- name: centos
|
|
tier: 2
|
|
versions:
|
|
- 'stream10'
|
|
- 'stream9'
|
|
- name: ubuntu
|
|
tier: 2
|
|
versions:
|
|
- 'devel'
|
|
- name: debian
|
|
tier: 2
|
|
versions:
|
|
- 'testing'
|
|
- 'sid'
|
|
- 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:
|
|
- '43'
|
|
- '41'
|
|
- name: ubuntu
|
|
tier: 3
|
|
versions:
|
|
- '25.04'
|
|
- '24.04'
|
|
- '22.04'
|
|
- name: debian
|
|
tier: 3
|
|
versions:
|
|
- '13'
|
|
- '12'
|
|
- name: alpine
|
|
tier: 3
|
|
versions:
|
|
- '3.22'
|
|
- '3.21'
|
|
- '3.20'
|
|
- '3.19'
|