Skip to content

Commit

Permalink
Enable running tests for container-common-scripts on RHEL10
Browse files Browse the repository at this point in the history
Signed-off-by: Petr "Stone" Hracek <[email protected]>
  • Loading branch information
phracek committed Jan 9, 2025
1 parent 008d6ea commit 19858d1
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/container-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
container-to-test: ["postgresql-container", "nginx-container", "s2i-perl-container", "s2i-python-container", "s2i-base-container" ]
os: ["fedora", "c9s", "rhel8", "rhel9", "c10s"]
os: ["fedora", "c9s", "rhel8", "rhel9", "c10s", "rhel10"]

if: |
github.event.issue.pull_request
Expand Down Expand Up @@ -58,9 +58,15 @@ jobs:
context="RHEL8"
tmt_plan="rhel8-docker"
else
compose="RHEL-9.4.0-Nightly"
context="RHEL9"
tmt_plan="rhel9-docker"
if [ '${{ matrix.os }} == "rhel9" ]; then
compose="RHEL-9.4.0-Nightly"
context="RHEL9"
tmt_plan="rhel9-docker"
else
compose="RHEL-10-Nightly"
context="RHEL10"
tmt_plan="rhel10-docker"
fi
fi
fi
echo "api_key=$api_key" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 19858d1

Please sign in to comment.