Skip to content

Commit bc65535

Browse files
committed
Try fixing some prereqs and test on Windows
1 parent bcbbecb commit bc65535

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
perl-version:
16-
# - '5.32'
16+
- '5.32'
1717
# - '5.30'
1818
# - '5.28'
1919
# - '5.26'

META.json

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
"prereqs" : {
2727
"configure" : {
2828
"requires" : {
29+
"Alien::Base::Wrapper" : "0",
30+
"Alien::Sodium" : "2.00",
2931
"ExtUtils::MakeMaker" : "0",
3032
"FFI::Build::MM" : "0.83",
3133
"perl" : "5.008"

Makefile.PL

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ my %WriteMakefileArgs = (
1111
"ABSTRACT" => "FFI implementation of libsodium",
1212
"AUTHOR" => "Chase Whitener <capoeirab\@cpan.org>",
1313
"CONFIGURE_REQUIRES" => {
14+
"Alien::Base::Wrapper" => 0,
15+
"Alien::Sodium" => "2.00",
1416
"ExtUtils::MakeMaker" => 0,
1517
"FFI::Build::MM" => "0.83"
1618
},

cpanfile

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
on 'configure' => sub {
2+
requires 'Alien::Base::Wrapper';
3+
requires 'Alien::Sodium' => '2.00';
4+
};
5+
16
on 'runtime' => sub {
27
requires 'strict';
38
requires 'warnings';

0 commit comments

Comments
 (0)