Skip to content

Commit 19858d1

Browse files
committed
Enable running tests for container-common-scripts on RHEL10
Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 008d6ea commit 19858d1

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/container-tests.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
container-to-test: ["postgresql-container", "nginx-container", "s2i-perl-container", "s2i-python-container", "s2i-base-container" ]
16-
os: ["fedora", "c9s", "rhel8", "rhel9", "c10s"]
16+
os: ["fedora", "c9s", "rhel8", "rhel9", "c10s", "rhel10"]
1717

1818
if: |
1919
github.event.issue.pull_request
@@ -58,9 +58,15 @@ jobs:
5858
context="RHEL8"
5959
tmt_plan="rhel8-docker"
6060
else
61-
compose="RHEL-9.4.0-Nightly"
62-
context="RHEL9"
63-
tmt_plan="rhel9-docker"
61+
if [ '${{ matrix.os }} == "rhel9" ]; then
62+
compose="RHEL-9.4.0-Nightly"
63+
context="RHEL9"
64+
tmt_plan="rhel9-docker"
65+
else
66+
compose="RHEL-10-Nightly"
67+
context="RHEL10"
68+
tmt_plan="rhel10-docker"
69+
fi
6470
fi
6571
fi
6672
echo "api_key=$api_key" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)