forked from Checkmk/checkmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
editions.yml
93 lines (85 loc) · 2.82 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
86
87
88
89
90
91
92
93
# The common set of distros which gets build during an official release
common: &common
- "debian-11"
- "debian-12"
- "ubuntu-22.04"
- "ubuntu-24.04"
- "almalinux-9"
- "sles-15sp3"
- "sles-15sp4"
- "sles-15sp5"
- "sles-15sp6"
# A reduced set of distros for the daily builds
# Containing only the latest version of each supported OS
# ubuntu-22.04 is used as internal base image
daily_reduced: &daily_reduced
- "ubuntu-22.04"
- "ubuntu-24.04"
- "debian-12"
- "sles-15sp6"
daily_saas: &daily_saas
- "ubuntu-22.04"
- "ubuntu-24.04"
# Builds for those distros will only be available internally for development purpose
internal_distros: &internal_distros
- "ubuntu-23.10"
# Currently, all builds of the saas edition should stay completley internal
internal_editions:
- "saas"
cma_distros: &cma_distros
- "cma-4"
fips_distros: &fips_distros
- "ubuntu-22.04"
# 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_distros]
daily: [*common, *cma_distros, *internal_distros]
daily_tests: [*common, *internal_distros]
fips: [*fips_distros]
# Don't test the update process for internal distros, they are not public anyway
daily_update_tests: [*common]
weekly: [*common, *cma_distros]
testbuild: ["ubuntu-24.04", "sles-15sp6", "cma-4"]
cloud:
release: [*common, *cma_distros]
daily: *daily_reduced
daily_tests: *daily_reduced
fips: []
# 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_distros]
daily: *daily_reduced
daily_tests: *daily_reduced
fips: []
weekly: *daily_reduced
testbuild: []
raw:
release: *common
daily: *daily_reduced
daily_tests: *daily_reduced
fips: []
weekly: *daily_reduced
testbuild: []
saas:
release: ["ubuntu-22.04"]
daily: *daily_saas
daily_tests: *daily_saas
daily_update_tests: [*daily_saas]
fips: []
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"