Skip to content

Commit

Permalink
CI: remove OpenSSL 3 from Fedora; add RHEL 9 & Alpine Edge
Browse files Browse the repository at this point in the history
  • Loading branch information
hg committed May 21, 2022
1 parent aaa0045 commit d740849
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .ci/deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ deps_linux_rhel() {

if type dnf; then
dnf install -y 'dnf-command(config-manager)'
dnf config-manager --enable powertools
dnf config-manager --enable powertools || true
dnf config-manager --enable crb || true
fi
fi

Expand Down Expand Up @@ -140,9 +141,16 @@ deps_linux() {
deps_linux_debian "$@"
;;

centos | almalinux | fedora)
fedora)
deps_linux_rhel "$@"
linux_openssl3
;;

centos | almalinux)
deps_linux_rhel "$@"

if [ "${PLATFORM_ID:-}" != platform:el9 ]; then
linux_openssl3
fi
;;

*) exit 1 ;;
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,10 @@ jobs:
matrix:
os:
- alpine
- alpine:edge
- centos:7 # aka RHEL 7
- almalinux:8 # aka RHEL 8
- almalinux:9 # aka RHEL 9
- fedora
- debian:buster
- debian:bullseye
Expand Down

0 comments on commit d740849

Please sign in to comment.