forked from Checkmk/checkmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
editions.yml
85 lines (79 loc) · 2.66 KB
/
editions.yml
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
77
78
79
80
81
82
83
84
85
# The common set of distros which gets build during an official release
common: &common
- "debian-10"
- "debian-11"
- "debian-12"
- "ubuntu-20.04"
- "ubuntu-22.04"
- "centos-8"
- "almalinux-9"
- "sles-12sp5"
- "sles-15sp3"
- "sles-15sp4"
- "sles-15sp5"
# A reduced set of distros for the daily builds
daily_reduced: &daily_reduced
- "ubuntu-20.04"
- "ubuntu-22.04"
- "debian-10"
daily_extended: &daily_extended
- "debian-12"
- "ubuntu-20.04"
- "ubuntu-22.04"
- "centos-8"
- "almalinux-9"
- "sles-15sp5"
# Max L runs on the latest ubuntu and does not want to reinstall his machine
daily_saas: &daily_saas
- "ubuntu-22.04"
- "ubuntu-23.10"
# Builds for those distros will only be available internally for development purpose
internal_distros: &internal_distros
- "ubuntu-23.10"
# README:
# - the following sections defines what will be build/tested under which "use-case"
# - as a consequence, you need to consider e.g.:
# - if we want to test the update for the combination edition A / distro B,
# we may also need the builds for that!
# - so keep that in mind when changing those settings!
editions:
enterprise:
release: [*common, "cma-3", "cma-4"]
daily: [*daily_extended, *internal_distros, "cma-4"]
daily_tests: [*daily_extended, *internal_distros]
# Don't test the update process for internal distros, they are not public anyway
daily_update_tests: [*daily_extended]
weekly: [*common, "cma-3", "cma-4"]
testbuild: ["ubuntu-22.04", "centos-8", "cma-4"]
cloud:
release: [*common, "cma-3", "cma-4"]
daily: *daily_reduced
daily_tests: *daily_reduced
# Don't test the update process for internal distros, they are not public anyway
daily_update_tests: [*daily_reduced]
weekly: *daily_reduced
testbuild: []
managed:
release: [*common, "cma-3", "cma-4"]
daily: *daily_reduced
daily_tests: *daily_reduced
weekly: *daily_reduced
testbuild: []
raw:
release: *common
daily: *daily_reduced
daily_tests: *daily_reduced
weekly: *daily_reduced
testbuild: []
saas:
release: ["ubuntu-22.04"]
daily: *daily_saas
daily_tests: *daily_saas
weekly: *daily_saas
testbuild: []
# TODO: Sync this with our omd/distros/*.mk files
# We currently only need this for the internal_distros as at the point in the pipeline,
# where we want to exclude the internal distros, we are only using the distro codes and not the
# distro name anymore.
distro_to_codename:
ubuntu-23.10: "mantic"