Adjust testsuite to use perl-versions #47
Workflow file for this run
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
name: test | |
on: | |
- push | |
- pull_request | |
jobs: | |
perl-versions: | |
runs-on: ubuntu-latest | |
name: List Perl versions | |
outputs: | |
perl-versions: ${{ steps.massage.outputs.perl-versions }} | |
steps: | |
- id: action | |
uses: perl-actions/perl-versions@v1 | |
with: | |
since-perl: v5.10 | |
with-devel: true | |
- id: massage | |
name: add buster | |
run: | | |
echo '${{ steps.action.outputs.perl-versions }}' > perl.versions | |
perl -pi -e 's/"(\d\.\d+)"/"$1-buster"/g' perl.versions | |
cat perl.versions | |
echo "perl-versions=$(cat perl.versions)" >> $GITHUB_OUTPUT | |
linux: | |
runs-on: ubuntu-latest | |
needs: [perl-versions] | |
defaults: | |
run: | |
shell: 'script -q -e -c "bash {0}"' # create TTY so that -t STDIN works | |
strategy: | |
fail-fast: false | |
matrix: | |
perl-version: ${{ fromJson(needs.perl-versions.outputs.perl-versions) }} | |
container: perl:${{ matrix.perl-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
perl App-cpanminus/cpanm -nq App::cpanminus | |
cpanm -nq LWP::Protocol::https | |
(cd App-cpanminus && cpanm -nq --installdeps --with-develop --with-recommends --with-suggests .) | |
(cd Menlo && cpanm -nq --installdeps --with-develop --with-recommends --with-suggests .) | |
- name: Run Tests | |
run: (cd App-cpanminus && prove -lr xt -j9) |