Add CI support for Fedora 38 & Ubuntu 23.04 native packages (#14735)
* Add CI support for Fedora 38 & Ubuntu 23.04 Signed-off-by: Tasos Katsoulas <tasos@netdata.cloud> * sort list * fix merge conflicts Signed-off-by: Tasos Katsoulas <tasos@netdata.cloud> * parorama Signed-off-by: Tasos Katsoulas <tasos@netdata.cloud> * CI's pain, minor omission Signed-off-by: Tasos Katsoulas <tasos@netdata.cloud> --------- Signed-off-by: Tasos Katsoulas <tasos@netdata.cloud>
Tasos Katsoulas committed
Mar 17, 2023 at 18:59 UTC
685bbf57039c67a82e117e1cc23742dafa81f858
2 files changed
+16
-2
.github/data/distros.yml
+14
-2
@@ -137,18 +137,25 @@ include:
137
138
- &fedora
139
distro: fedora
140
- version: "37"
140
+ version: "38"
141
eol_check: true
142
jsonc_removal: |
143
dnf remove -y json-c-devel
144
packages: &fedora_packages
145
type: rpm
146
- repo_distro: fedora/37
146
+ repo_distro: fedora/38
147
arches:
148
- x86_64
149
- aarch64
150
test:
151
ebpf-core: true
152
+ - <<: *fedora
153
+ version: "37"
154
+ packages:
155
+ <<: *fedora_packages
156
+ repo_distro: fedora/37
157
+ test:
158
+ ebpf-core: true
159
- <<: *fedora
160
version: "36"
161
packages:
@@ -210,6 +217,11 @@ include:
217
- arm64
218
test:
219
ebpf-core: true
220
+ - <<: *ubuntu
221
+ version: "23.04"
222
+ packages:
223
+ <<: *ubuntu_packages
224
+ repo_distro: ubuntu/lunar
225
- <<: *ubuntu
226
version: "22.04"
227
packages:
packaging/PLATFORM_SUPPORT.md
+2
@@ -66,6 +66,7 @@ to work on these platforms with minimal user effort.
66
| Debian | 12.x | x86\_64, i386, ARMv7, AArch64 | |
67
| Debian | 11.x | x86\_64, i386, ARMv7, AArch64 | |
68
| Debian | 10.x | x86\_64, i386, ARMv7, AArch64 | |
69
+| Fedora | 38 | x86\_64, AArch64 | |
70
| Fedora | 37 | x86\_64, AArch64 | |
71
| Fedora | 36 | x86\_64, AArch64 | |
72
| openSUSE | Leap 15.4 | x86\_64, AArch64 | |
@@ -74,6 +75,7 @@ to work on these platforms with minimal user effort.
75
| Red Hat Enterprise Linux | 9.x | x86\_64, AArch64 | |
76
| Red Hat Enterprise Linux | 8.x | x86\_64, AArch64 | |
77
| Red Hat Enterprise Linux | 7.x | x86\_64 | |
78
+| Ubuntu | 23.04 | x86\_64, AArch64, ARMv7 | |
79
| Ubuntu | 22.10 | x86\_64, ARMv7, AArch64 | |
80
| Ubuntu | 22.04 | x86\_64, ARMv7, AArch64 | |
81
| Ubuntu | 20.04 | x86\_64, ARMv7, AArch64 | |