Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: remove OpenSSL 3 from Fedora; add RHEL 9 & Alpine Edge #389

Merged
merged 1 commit into from
May 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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