actions-setup-perl icon indicating copy to clipboard operation
actions-setup-perl copied to clipboard

Perls with longdouble and quadmath

Open DrHyde opened this issue 3 years ago • 3 comments

Similar to #420 it would be nice to be able to request a perl built with -Duselongdouble or -Dusequadmath.

NB that quadmath is a gcc-ism so probably isn't available on Windows.

DrHyde avatar Dec 08 '20 23:12 DrHyde

This would be useful for me as well for testing PDL's ldouble() type support.

zmughal avatar Jan 25 '22 05:01 zmughal

FYI for now my work-around is to use perlbrew to roll my own: https://github.com/DrHyde/perl-modules-Data-CompactReadonly/blob/master/.github/workflows/weird-perls.yml

DrHyde avatar Feb 15 '23 18:02 DrHyde

@DrHyde, you could cache the built perls with Github's own actions/cache. It's what I did for https://github.com/sanko/Affix.pm/blob/main/.github/workflows/ci.yaml.

The majority of that workflow is there to work around perlbrew being incompatible with Windows but it runs over 100 different platform and build flag combinations... caching has been a real time saver.

sanko avatar Feb 15 '23 19:02 sanko