Skip to content

Commit dbed1e7

Browse files
authored
Merge pull request #15 from waterkip/old-perls
Use a newer Perl image for the older perls
2 parents 508577c + 2703365 commit dbed1e7

File tree

4 files changed

+34
-10
lines changed

4 files changed

+34
-10
lines changed

.github/workflows/linux.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,29 @@ name: linux
22

33
on:
44
- push
5+
- pull_request
56

67
jobs:
78
perl:
89
runs-on: ubuntu-latest
10+
continue-on-error: true
911
strategy:
1012
matrix:
1113
perl-version:
12-
- '5.10'
13-
- '5.12'
14-
- '5.14'
15-
- '5.16'
16-
- '5.18'
17-
- '5.20'
18-
- '5.22'
19-
- '5.24'
14+
- '5.10-buster'
15+
- '5.12-buster'
16+
- '5.14-buster'
17+
- '5.16-buster'
18+
- '5.18-buster'
19+
- '5.20-buster'
20+
- '5.22-buster'
21+
- '5.24-buster'
2022
- '5.26'
2123
- '5.28'
2224
- '5.30'
2325
- '5.32'
26+
- '5.34'
27+
- '5.36'
2428
container:
2529
image: perl:${{ matrix.perl-version }}
2630
steps:

Makefile.PL

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# This Makefile.PL for Crypt-OpenSSL-Verify was generated by
21
# Dist::Zilla::Plugin::MakeMaker::Awesome 0.49.
32
# Don't edit it but the dist.ini and plugins used to construct it.
43

cpanfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Do not edit this file directly. To change prereqs, edit the `dist.ini` file.
2+
3+
requires "Crypt::OpenSSL::X509" => "0";
4+
requires "perl" => "5.008";
5+
6+
on 'test' => sub {
7+
requires "File::Slurper" => "0.012";
8+
requires "Test::Exception" => "0";
9+
};
10+
11+
on 'configure' => sub {
12+
requires "ExtUtils::MakeMaker" => "0";
13+
};
14+
15+
on 'develop' => sub {
16+
requires "Test::CPAN::Meta::JSON" => "0.16";
17+
requires "Test::Kwalitee" => "1.21";
18+
requires "Test::Pod" => "1.41";
19+
requires "Test::Spelling" => "0.12";
20+
};

dist.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,10 @@ stopword = SSLeay
5252
format = %v -- %{EEE MMM dd HH:mm:ss VVV yyyy}d
5353
filename = Changes
5454

55-
[CopyFilesFromBuild]
55+
[CopyFilesFromBuild::Filtered]
5656
copy = Makefile.PL
5757
copy = LICENSE
58+
copy = cpanfile
5859

5960
[MakeMaker::Awesome]
6061
header_file = maint/Makefile_header.PL

0 commit comments

Comments
 (0)