Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion linux/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,9 @@ def uploadRPMArtifacts(distro) {
'rpm/fedora/36',
'rpm/oraclelinux/8',
'rpm/amazonlinux/2',
'rpm/oraclelinux/7'
'rpm/oraclelinux/7',
'rpm/almalinux/8',
'rpm/almalinux/9'
],
'suse' : [
'rpm/opensuse/15.3',
Expand Down
2 changes: 2 additions & 0 deletions linux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ SRPM also available.

| Distr | Test enabled platforms | Note |
| ---------------- |:----------------------:|:----:|
| almalinux/8 | x86_64 | |
| almalinux/9 | x86_64 | |
| amazonlinux/2 | x86_64 | |
| centos/7 | x86_64 | |
| rpm/fedora/35 | x86_64 | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public Stream<? extends Arguments> provideArguments(ExtensionContext context) {
* Rocky Linux (CentOS replacement): All supported versions
* Oracle Linux: All supported versions until premier support runs out
* (https://www.oracle.com/a/ocom/docs/elsp-lifetime-069338.pdf)
* AlmaLinux (1:1 binary compatible clone of RHEL): All supported versions
*/
return Stream.of(
Arguments.of("rockylinux", "8"),
Expand All @@ -46,7 +47,9 @@ public Stream<? extends Arguments> provideArguments(ExtensionContext context) {
Arguments.of("fedora", "37"),
Arguments.of("redhat/ubi8", "latest"),
Arguments.of("redhat/ubi9", "latest"),
Arguments.of("oraclelinux", "8")
Arguments.of("oraclelinux", "8"),
Arguments.of("almalinux", "8"),
Arguments.of("almalinux", "9")
);
}
}