Skip to content

Commit

Permalink
mingw: fix broken strawberry perl paths
Browse files Browse the repository at this point in the history
github's mingw is incompatible to old strawberry's 5.32 mingw.
See e.g. actions/runner-images#5459
  • Loading branch information
rurban committed Apr 13, 2024
1 parent 911b940 commit 7155882
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ jobs:
- uses: actions/checkout@master
- run: perl -V
- run: perl Makefile.PL
- run: echo $PATH
shell: bash
#- run: prove -vb t/*.t
- run: make test
# https://github.com/actions/runner-images/issues/5459
- run: PATH="/c/Strawberry/c/bin:/c/Strawberry/perl/site/bin:/c/Strawberry/perl/bin:/c/ProgramData/Chocolatey/bin:/c/Windows/system32:/c/Windows:/usr/bin" make test
shell: bash
#continue-on-error: true
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ WriteMakefile(
'Test::Pod' => '1.22',
'Test::More' => 0,
},
(eval { ExtUtils::MakeMaker->VERSION('6.52'); 1 } ?
(eval { ExtUtils::MakeMaker->VERSION('6.52'); 1 } ?
('CONFIGURE_REQUIRES' =>
{
'Crypt::OpenSSL::Guess' => '0.11',
Expand Down

0 comments on commit 7155882

Please sign in to comment.