Skip to content

Commit d4bb26f

Browse files
committed
CI: Add Rocky Linux 9 to Kolla container build workflow
1 parent f850a2c commit d4bb26f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/stackhpc-container-image-build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ on:
2323
type: boolean
2424
required: false
2525
default: true
26+
rocky-linux-9:
27+
description: Build Rocky Linux 9 images?
28+
type: boolean
29+
required: false
30+
default: true
2631
ubuntu-focal:
2732
description: Build Ubuntu Focal 20.04 images?
2833
type: boolean
@@ -75,6 +80,10 @@ jobs:
7580
echo -n "$comma\"centos\"" >> $GITHUB_OUTPUT
7681
comma=", "
7782
fi
83+
if [[ ${{ inputs.rocky-linux-9 }} == 'true' ]]; then
84+
echo -n "$comma\"rocky\"" >> $GITHUB_OUTPUT
85+
comma=", "
86+
fi
7887
if [[ ${{ inputs.ubuntu-focal }} == 'true' ]]; then
7988
echo -n "$comma\"ubuntu\"" >> $GITHUB_OUTPUT
8089
comma=", "

0 commit comments

Comments
 (0)