File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -57,15 +57,16 @@ jobs:
5757 - debian:buster # OpenSSL 1.1.1
5858 - debian:bullseye # OpenSSL 1.1.1
5959 - debian:bookworm # OpenSSL 3.0.x
60- - ubuntu:20.04 # OpenSSL 1.1.1
60+ - almalinux:9 # OpenSSL with new crypto policies (RHEL-compatible)
6161
6262 container : ${{ matrix.os-version }}
6363 steps :
6464 - uses : actions/checkout@v4
6565 - name : Install dependencies
6666 run : |
67- apt-get update &&
68- apt-get install -y openssl perl make gcc libssl-dev perl sudo curl
67+ (apt-get update &&
68+ apt-get install -y openssl perl make gcc libssl-dev perl sudo curl) ||
69+ (yum install --skip-broken -y openssl perl make gcc openssl-devel perl sudo curl)
6970 - run : openssl version
7071 - run : perl -V
7172 - name : uses install-with-cpm
7475 cpanfile : " cpanfile"
7576 - name : Makefile.PL
7677 run : perl -I$(pwd) Makefile.PL
77- - run : make && ( make test || prove -wbvm t/*.t )
78+ - run : make && prove -wbvm t/*.t
7879
7980#
8081# List of Perl Versions available
You can’t perform that action at this time.
0 commit comments