Skip to content
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
3 changes: 2 additions & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,14 @@ jobs:
# - debian:buster # OpenSSL 1.1.1
- debian:bullseye # OpenSSL 1.1.1
- debian:bookworm # OpenSSL 3.0.x
- debian:trixie # OpenSSL 3.4.x (Debian 13)
- almalinux:9 # OpenSSL with new crypto policies (RHEL-compatible)

container: ${{ matrix.os-version }}
steps:
- uses: actions/checkout@v6
- name: Install dependencies using apt-get
if: ${{ matrix.os-version == 'debian:bullseye' || matrix.os-version == 'debian:bookworm' }}
if: ${{ startsWith(matrix.os-version, 'debian:') }}
run: |
apt-get update
apt-get install -y openssl perl make gcc libssl-dev sudo curl
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,5 @@
*.o
*.gcov
*.gcno
*.gcov
*.gcda
*.gcno
*.ERR
8 changes: 4 additions & 4 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ WriteMakefile(
'Crypt::OpenSSL::Guess' => '0.11',
},
build_requires => {
'Test' => 0, # For testing
'Test::More' => 0,
},
resources => {
'license' => 'http://dev.perl.org/licenses/',
'homepage' => 'http://github.com/cpan-authors/Crypt-OpenSSL-RSA',
'license' => 'https://dev.perl.org/licenses/',
'homepage' => 'https://github.com/cpan-authors/Crypt-OpenSSL-RSA',
'bugtracker' => 'https://github.com/cpan-authors/Crypt-OpenSSL-RSA/issues',
'repository' => 'http://github.com/cpan-authors/Crypt-OpenSSL-RSA',
'repository' => 'https://github.com/cpan-authors/Crypt-OpenSSL-RSA',
}
}
);