Skip to content

Commit

Permalink
Use almalinux 8 for EL8 testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ehelms committed Aug 27, 2024
1 parent 2210541 commit 51b30a1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,24 @@ jobs:
fail-fast: false
matrix:
centos:
- stream8
- stream9
container:
image: quay.io/centos/centos:${{ matrix.centos }}
steps:
- uses: actions/checkout@v2
- name: Run tests
run: ./test.sh

almalinux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
almalinux:
- 8
container:
image: almalinux:${{ matrix.almalinux }}
steps:
- uses: actions/checkout@v2
- name: Run tests
run: ./test.sh
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PYTHON=python3

if [[ -f /etc/redhat-release ]]; then
. /etc/os-release
if [[ $VERSION_ID == 8 ]] ; then
if [[ $VERSION_ID == "8.10" ]] ; then
REPOS="--enablerepo=powertools"
else
REPOS=""
Expand Down

0 comments on commit 51b30a1

Please sign in to comment.