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

perl x86 support

Open alisonrag opened this issue 3 years ago • 3 comments

is possible to add perl x86 versions?

alisonrag avatar Feb 14 '21 05:02 alisonrag

I have no plan to support other platform than x86-64

shogo82148 avatar Feb 16 '21 00:02 shogo82148

how can we test perl x86 in github actions?

ya4ept avatar Feb 16 '21 15:02 ya4ept

I found a solution:

    - name: Replace perl to strawberry Perl 5.12
      shell: pwsh
      run: |
        echo "================================================================="
        echo "== previous version of Perl:"
        echo "================================================================="
        perl --version
        echo "================================================================="
        echo "== remove the default perl"
        echo "================================================================="
        rm -r C:/Strawberry/*
        echo "================================================================="
        echo "== download strawberry 5.12"
        echo "================================================================="
        Invoke-WebRequest https://strawberryperl.com/download/5.12.3.0/strawberry-perl-5.12.3.0-portable.zip -OutFile strawberry.zip
        7z.exe x strawberry.zip -o"C:/Strawberry"
        echo "================================================================="
        echo "== a new version of Perl:"
        echo "================================================================="
        perl --version

ya4ept avatar Feb 26 '21 22:02 ya4ept