Skip to content

Commit ec4d4f8

Browse files
mcmilkbehlendorf
authored andcommitted
ZTS: Add AlmaLinux 10
Reviewed-by: Alexander Motin <mav@FreeBSD.org> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de> Closes #17397
1 parent 4535f5e commit ec4d4f8

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/scripts/qemu-2-start.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ case "$OS" in
3434
OSNAME="AlmaLinux 9"
3535
URL="https://repo.almalinux.org/almalinux/9/cloud/x86_64/images/AlmaLinux-9-GenericCloud-latest.x86_64.qcow2"
3636
;;
37+
almalinux10)
38+
OSNAME="AlmaLinux 10"
39+
OSv="almalinux9"
40+
URL="https://repo.almalinux.org/almalinux/10/cloud/x86_64/images/AlmaLinux-10-GenericCloud-latest.x86_64.qcow2"
41+
;;
3742
archlinux)
3843
OSNAME="Archlinux"
3944
URL="https://geo.mirror.pkgbuild.com/images/latest/Arch-Linux-x86_64-cloudimg.qcow2"

.github/workflows/scripts/qemu-3-deps-vm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ case "$1" in
128128
sudo dnf install -y kernel-abi-whitelists
129129
echo "##[endgroup]"
130130
;;
131-
almalinux9|centos-stream9|centos-stream10)
131+
almalinux9|almalinux10|centos-stream9|centos-stream10)
132132
echo "##[group]Enable epel and crb repositories"
133133
sudo dnf config-manager -y --set-enabled crb
134134
sudo dnf install -y epel-release

.github/workflows/zfs-qemu-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
fail-fast: false
4949
matrix:
50-
os: ['almalinux8', 'almalinux9', 'fedora40', 'fedora41', 'fedora42']
50+
os: ['almalinux8', 'almalinux9', 'almalinux10', 'fedora40', 'fedora41', 'fedora42']
5151
runs-on: ubuntu-24.04
5252
steps:
5353
- uses: actions/checkout@v4

.github/workflows/zfs-qemu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
- name: Generate OS config and CI type
4040
id: os
4141
run: |
42-
FULL_OS='["almalinux8", "almalinux9", "debian11", "debian12", "fedora40", "fedora41", "fedora42", "freebsd13-4r", "freebsd14-2s", "freebsd15-0c", "ubuntu22", "ubuntu24"]'
43-
QUICK_OS='["almalinux8", "almalinux9", "debian12", "fedora42", "freebsd14-2r", "ubuntu24"]'
42+
FULL_OS='["almalinux8", "almalinux9", "almalinux10", "debian11", "debian12", "fedora40", "fedora41", "fedora42", "freebsd13-4r", "freebsd14-2s", "freebsd15-0c", "ubuntu22", "ubuntu24"]'
43+
QUICK_OS='["almalinux8", "almalinux9", "almalinux10", "debian12", "fedora42", "freebsd14-2r", "ubuntu24"]'
4444
# determine CI type when running on PR
4545
ci_type="full"
4646
if ${{ github.event_name == 'pull_request' }}; then

0 commit comments

Comments
 (0)