Skip to content

Commit

Permalink
feat: add centos:9 sample
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Sep 2, 2024
1 parent f11448d commit 50b3fa5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/rhel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
container:
- 'rockylinux:9'
- 'fedora:39'
- 'quay.io/centos/centos:stream9'
container:
image: ${{ matrix.container }}
steps:
Expand All @@ -77,10 +78,11 @@ jobs:

- name: Install OpenSSL 1.1
run: |
if [ "${{matrix.container}}" = "rockylinux:9" ] ; then
dnf -y install compat-openssl11 procps-ng
dnf -y install procps-ng
if [ "${{matrix.container}}" = "rockylinux:9" || "${{matrix.container}}" = "quay.io/centos/centos:stream9" ] ; then
dnf -y install compat-openssl11
elif [ "${{matrix.container}}" = "fedora:39" ] ; then
dnf -y install openssl1.1 procps-ng
dnf -y install openssl1.1
fi
- name: Adjust package permissions
Expand Down

0 comments on commit 50b3fa5

Please sign in to comment.