Mac OS 12 is deprecated on Github; bump cross-platform-actions to latest #161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Linux | |
jobs: | |
list: | |
name: list available perl versions | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: shogo82148/actions-setup-perl@v1 | |
- id: set-matrix | |
name: list available perl versions | |
shell: perl {0} | |
run: | | |
use Actions::Core; | |
# 5.12 is too old, 5.20 can't build Sub::Name in the Github environment for some reason | |
set_output(matrix => {perl => [grep { $_ !~ /^5.(6|8|10|12|20)\./ } perl_versions()]}); | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
build: | |
runs-on: 'ubuntu-latest' | |
needs: list | |
strategy: | |
fail-fast: false | |
matrix: ${{fromJson(needs.list.outputs.matrix)}} | |
name: Perl ${{ matrix.perl }} | |
steps: | |
- name: check out code | |
uses: actions/checkout@v4 | |
- name: switch to perl ${{ matrix.perl }} | |
uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{ matrix.perl }} | |
- name: run tests | |
env: | |
PERL_USE_UNSAFE_INC: 0 | |
run: | | |
perl -v | |
cpanm --force ExtUtils::MakeMaker || true | |
cpanm --force JSON::PP || true | |
cpanm JSON::PP ExtUtils::MakeMaker Test::Pod Test::Pod::Coverage || cat /home/runner/.cpanm/work/*/build.log | |
perl -Mparent -e0 || cpanm parent | |
rm -rf /home/runner/.cpanm/work/* | |
cpanm --installdeps . || cat /home/runner/.cpanm/work/*/build.log | |
perl Makefile.PL | |
make test TEST_VERBOSE=1 |