distros.yml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. # This defines the full set of distros we run CI on.
  2. ---
  3. platform_map: # map packaging architectures to docker platforms
  4. aarch64: linux/arm64/v8
  5. amd64: linux/amd64
  6. arm64: linux/arm64/v8
  7. armhf: linux/arm/v7
  8. armhfp: linux/arm/v7
  9. i386: linux/386
  10. x86_64: linux/amd64
  11. arch_order: # sort order for per-architecture jobs in CI
  12. - amd64
  13. - x86_64
  14. - i386
  15. - armhf
  16. - armhfp
  17. - arm64
  18. - aarch64
  19. default_sentry: &default_sentry # Default configuration for Sentry usage
  20. amd64: false
  21. x86_64: false
  22. i386: false
  23. armhf: false
  24. armhfp: false
  25. arm64: false
  26. aarch64: false
  27. default_builder_rev: &def_builder_rev v1
  28. include:
  29. - &alpine
  30. distro: alpine
  31. version: edge
  32. support_type: Community
  33. notes: ''
  34. eol_check: false
  35. bundle_sentry: *default_sentry
  36. env_prep: |
  37. apk add -U bash
  38. jsonc_removal: |
  39. apk del json-c-dev
  40. test:
  41. ebpf-core: true
  42. - <<: *alpine
  43. version: "3.20"
  44. support_type: Core
  45. notes: ''
  46. eol_check: true
  47. - <<: *alpine
  48. version: "3.19"
  49. support_type: Core
  50. notes: ''
  51. eol_check: true
  52. - <<: *alpine
  53. version: "3.18"
  54. support_type: Intermediate
  55. notes: ''
  56. eol_check: true
  57. - <<: *alpine
  58. version: "3.17"
  59. support_type: Intermediate
  60. notes: ''
  61. eol_check: true
  62. - distro: archlinux
  63. version: latest
  64. support_type: Intermediate
  65. notes: ''
  66. eol_check: false
  67. bundle_sentry: *default_sentry
  68. env_prep: |
  69. pacman --noconfirm -Syu && pacman --noconfirm -Sy grep libffi
  70. test:
  71. ebpf-core: true
  72. - &amzn
  73. distro: amazonlinux
  74. version: "2"
  75. support_type: Core
  76. notes: ''
  77. eol_check: 'amazon-linux'
  78. bundle_sentry: *default_sentry
  79. packages: &amzn_packages
  80. type: rpm
  81. repo_distro: amazonlinux/2
  82. builder_rev: *def_builder_rev
  83. arches:
  84. - x86_64
  85. - aarch64
  86. test: &amzn_test
  87. ebpf-core: false
  88. skip-local-build: true
  89. - <<: *amzn
  90. version: "2023"
  91. packages:
  92. <<: *amzn_packages
  93. repo_distro: amazonlinux/2023
  94. test:
  95. <<: *amzn_test
  96. skip-local-build: false
  97. - distro: centos
  98. version: "7"
  99. base_image: "netdata/legacy:centos7"
  100. support_type: Core
  101. notes: ''
  102. eol_check: false
  103. bundle_sentry: *default_sentry
  104. packages:
  105. type: rpm
  106. repo_distro: el/7
  107. builder_rev: *def_builder_rev
  108. alt_links:
  109. - el/7Server
  110. - el/7Client
  111. arches:
  112. - x86_64
  113. test:
  114. ebpf-core: false
  115. skip-local-build: true
  116. - &centos_stream
  117. distro: centos-stream
  118. base_image: 'quay.io/centos/centos:stream9'
  119. version: '9'
  120. support_type: 'Community'
  121. notes: ''
  122. jsonc_removal: |
  123. dnf remove -y json-c-devel
  124. eol_check: true
  125. bundle_sentry: *default_sentry
  126. packages: &cs_packages
  127. type: rpm
  128. repo_distro: el/c9s
  129. builder_rev: *def_builder_rev
  130. arches:
  131. - x86_64
  132. - aarch64
  133. test:
  134. ebpf-core: true
  135. - &debian
  136. distro: debian
  137. version: "12"
  138. support_type: Core
  139. notes: ''
  140. base_image: debian:bookworm
  141. eol_check: true
  142. eol_lts: true
  143. bundle_sentry:
  144. <<: *default_sentry
  145. amd64: true
  146. env_prep: |
  147. apt-get update
  148. jsonc_removal: |
  149. apt-get purge -y libjson-c-dev
  150. packages: &debian_packages
  151. type: deb
  152. repo_distro: debian/bookworm
  153. builder_rev: v2
  154. arches:
  155. - i386
  156. - amd64
  157. - armhf
  158. - arm64
  159. test:
  160. ebpf-core: true
  161. - <<: *debian
  162. version: "11"
  163. base_image: debian:bullseye
  164. packages:
  165. <<: *debian_packages
  166. repo_distro: debian/bullseye
  167. test:
  168. ebpf-core: false
  169. - &fedora
  170. distro: fedora
  171. version: "41"
  172. support_type: Core
  173. notes: ''
  174. eol_check: true
  175. bundle_sentry: *default_sentry
  176. jsonc_removal: |
  177. dnf remove -y json-c-devel
  178. packages: &fedora_packages
  179. type: rpm
  180. repo_distro: fedora/41
  181. builder_rev: *def_builder_rev
  182. arches:
  183. - x86_64
  184. - aarch64
  185. test:
  186. ebpf-core: true
  187. - <<: *fedora
  188. version: "40"
  189. packages:
  190. <<: *fedora_packages
  191. repo_distro: fedora/40
  192. test:
  193. ebpf-core: true
  194. - <<: *fedora
  195. version: "39"
  196. packages:
  197. <<: *fedora_packages
  198. repo_distro: fedora/39
  199. test:
  200. ebpf-core: true
  201. - &opensuse
  202. distro: opensuse
  203. version: "15.6"
  204. support_type: Core
  205. notes: ''
  206. eol_check: true
  207. bundle_sentry: *default_sentry
  208. base_image: opensuse/leap:15.6
  209. jsonc_removal: |
  210. zypper rm -y libjson-c-devel
  211. packages: &opensuse_packages
  212. type: rpm
  213. repo_distro: opensuse/15.6
  214. builder_rev: *def_builder_rev
  215. arches:
  216. - x86_64
  217. - aarch64
  218. test:
  219. ebpf-core: true
  220. - <<: *opensuse
  221. version: "15.5"
  222. base_image: opensuse/leap:15.5
  223. packages:
  224. <<: *opensuse_packages
  225. repo_distro: opensuse/15.5
  226. - &oracle
  227. distro: oraclelinux
  228. version: "8"
  229. support_type: Core
  230. notes: ''
  231. eol_check: true
  232. bundle_sentry: *default_sentry
  233. jsonc_removal: |
  234. dnf remove -y json-c-devel
  235. packages: &oracle_packages
  236. type: rpm
  237. repo_distro: ol/8
  238. builder_rev: *def_builder_rev
  239. arches:
  240. - x86_64
  241. - aarch64
  242. test:
  243. ebpf-core: true
  244. - <<: *oracle
  245. version: "9"
  246. packages:
  247. <<: *oracle_packages
  248. repo_distro: ol/9
  249. - &rocky
  250. distro: rockylinux
  251. version: "9"
  252. support_type: Core
  253. notes: ''
  254. jsonc_removal: |
  255. dnf remove -y json-c-devel
  256. eol_check: true
  257. bundle_sentry: *default_sentry
  258. packages: &rocky_packages
  259. type: rpm
  260. repo_distro: el/9
  261. builder_rev: *def_builder_rev
  262. alt_links:
  263. - el/9Server
  264. - el/9Client
  265. - el/9RedHatVirtualizationHost
  266. arches:
  267. - x86_64
  268. - aarch64
  269. test:
  270. ebpf-core: true
  271. - <<: *rocky
  272. version: "8"
  273. packages:
  274. <<: *rocky_packages
  275. repo_distro: el/8
  276. alt_links:
  277. - el/8Server
  278. - el/8Client
  279. - el/8RedHatVirtualizationHost
  280. - &ubuntu
  281. distro: ubuntu
  282. version: "24.04"
  283. support_type: Core
  284. notes: ''
  285. eol_check: true
  286. bundle_sentry:
  287. <<: *default_sentry
  288. amd64: true
  289. env_prep: |
  290. rm -f /etc/apt/apt.conf.d/docker && apt-get update
  291. jsonc_removal: |
  292. apt-get remove -y libjson-c-dev
  293. packages: &ubuntu_packages
  294. type: deb
  295. repo_distro: ubuntu/noble
  296. builder_rev: v2
  297. arches:
  298. - amd64
  299. - armhf
  300. - arm64
  301. test:
  302. ebpf-core: true
  303. - <<: *ubuntu
  304. version: "24.10"
  305. packages:
  306. <<: *ubuntu_packages
  307. repo_distro: ubuntu/oracular
  308. - <<: *ubuntu
  309. version: "22.04"
  310. packages:
  311. <<: *ubuntu_packages
  312. repo_distro: ubuntu/jammy
  313. - <<: *ubuntu
  314. version: "20.04"
  315. packages:
  316. <<: *ubuntu_packages
  317. repo_distro: ubuntu/focal
  318. legacy: # Info for platforms we used to support and still need to handle packages for
  319. - <<: *debian
  320. version: "10"
  321. packages:
  322. <<: *debian_packages
  323. repo_distro: debian/buster
  324. - <<: *fedora
  325. version: "37"
  326. packages:
  327. <<: *fedora_packages
  328. repo_distro: fedora/37
  329. - <<: *fedora
  330. version: "38"
  331. packages:
  332. <<: *fedora_packages
  333. repo_distro: fedora/38
  334. - <<: *opensuse
  335. version: "15.4"
  336. packages:
  337. <<: *opensuse_packages
  338. repo_distro: opensuse/15.4
  339. - <<: *centos_stream
  340. version: '8'
  341. base_image: 'quay.io/centos/centos:stream8'
  342. packages:
  343. <<: *cs_packages
  344. repo_distro: el/c8s
  345. - <<: *ubuntu
  346. version: "23.10"
  347. packages:
  348. <<: *ubuntu_packages
  349. repo_distro: ubuntu/mantic
  350. no_include: # Info for platforms not covered in CI
  351. - distro: docker
  352. version: "19.03 or newer"
  353. support_type: Core
  354. notes: ''
  355. packages:
  356. arches:
  357. - linux/i386
  358. - linux/amd64
  359. - linux/arm/v7
  360. - linux/arm64
  361. - linux/ppc64le
  362. - distro: clearlinux
  363. version: latest
  364. support_type: Community
  365. notes: ''
  366. - &rhel
  367. distro: rhel
  368. version: "9.x"
  369. support_type: Core
  370. notes: ''
  371. packages:
  372. arches:
  373. - x86_64
  374. - aarch64
  375. - <<: *rhel
  376. version: "8.x"
  377. - <<: *rhel
  378. version: "7.x"
  379. packages:
  380. arches:
  381. - x86_64
  382. - &freebsd
  383. distro: freebsd
  384. version: 13-STABLE
  385. support_type: Community
  386. notes: ''
  387. - &macos
  388. distro: macos
  389. version: '13'
  390. support_type: Community
  391. notes: ''
  392. - <<: *macos
  393. version: '12'
  394. - <<: *macos
  395. version: '11'
  396. - distro: gentoo
  397. version: latest
  398. support_type: Community
  399. notes: ''