actions-setup-perl
actions-setup-perl copied to clipboard
Consider including Module::Build
Can we get Module::Build
installed by default on both the Windows variants?
My attempts to get it installed manually in windows failed https://github.com/pmqs/Compress-Stream-Zstd/actions/runs/4152234268/jobs/7183055894and
Strawberry seems ok https://github.com/pmqs/Compress-Stream-Zstd/actions/runs/4152234265/jobs/7183055871
I think you want cpanm --quiet Module::Build
, not cpanm --quiet --installdeps Module::Build
. The latter only installs dependencies, not the module itself.
(Also, I think you wrote Module::Install
when you meant Module::Build
.)
I think you want
cpanm --quiet Module::Build
, notcpanm --quiet --installdeps Module::Build
. The latter only installs dependencies, not the module itself.
Thanks, that has made the action run a bit further
(Also, I think you wrote
Module::Install
when you meantModule::Build
.)
Indeed I did, thanks!