Skip to content

Commit 8c4f625

Browse files
carlwgeorgebehlendorf
authored andcommitted
CI: Add CentOS Stream 9/10 to the FULL_OS runner list
Testing on CentOS Stream provides several months advance notice of changes coming to the RHEL kernel. This should help OpenZFS be proactive instead of reactive to new RHEL minor versions. Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Tino Reichardt <[email protected]> Signed-off-by: Carl George <[email protected]> ZFS-CI-Type: full Closes #16904 Closes #17526
1 parent 7882e85 commit 8c4f625

File tree

1 file changed

+1
-19
lines changed

1 file changed

+1
-19
lines changed

.github/workflows/zfs-qemu.yml

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,6 @@ on:
55
pull_request:
66
workflow_dispatch:
77
inputs:
8-
include_stream9:
9-
type: boolean
10-
required: false
11-
default: false
12-
description: 'Test on CentOS 9 stream'
13-
include_stream10:
14-
type: boolean
15-
required: false
16-
default: false
17-
description: 'Test on CentOS 10 stream'
188
fedora_kernel_ver:
199
type: string
2010
required: false
@@ -39,7 +29,7 @@ jobs:
3929
- name: Generate OS config and CI type
4030
id: os
4131
run: |
42-
FULL_OS='["almalinux8", "almalinux9", "almalinux10", "debian11", "debian12", "fedora41", "fedora42", "freebsd13-5r", "freebsd14-3s", "freebsd15-0c", "ubuntu22", "ubuntu24"]'
32+
FULL_OS='["almalinux8", "almalinux9", "almalinux10", "centos-stream9", "centos-stream10", "debian11", "debian12", "fedora41", "fedora42", "freebsd13-5r", "freebsd14-3s", "freebsd15-0c", "ubuntu22", "ubuntu24"]'
4333
QUICK_OS='["almalinux8", "almalinux9", "almalinux10", "debian12", "fedora42", "freebsd14-3s", "ubuntu24"]'
4434
# determine CI type when running on PR
4535
ci_type="full"
@@ -63,14 +53,6 @@ jobs:
6353
os_json=$(echo ${os_selection} | jq -c)
6454
fi
6555
66-
# Add optional runners
67-
if [ "${{ github.event.inputs.include_stream9 }}" == 'true' ]; then
68-
os_json=$(echo $os_json | jq -c '. += ["centos-stream9"]')
69-
fi
70-
if [ "${{ github.event.inputs.include_stream10 }}" == 'true' ]; then
71-
os_json=$(echo $os_json | jq -c '. += ["centos-stream10"]')
72-
fi
73-
7456
echo $os_json
7557
echo "os=$os_json" >> $GITHUB_OUTPUT
7658
echo "ci_type=$ci_type" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)