Skip to content

Commit

Permalink
Merge pull request #46 from atoomic/ci++
Browse files Browse the repository at this point in the history
use perl-actions/perl-versions
  • Loading branch information
garu authored Apr 27, 2024
2 parents 157e08e + f53f454 commit 14655b0
Showing 1 changed file with 20 additions and 23 deletions.
43 changes: 20 additions & 23 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
PERL_CARTON_PATH: $GITHUB_WORKSPACE/local

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: perl -V
- name: install deps using cpanm
uses: perl-actions/install-with-cpanm@v1
Expand All @@ -36,43 +36,40 @@ jobs:
- run: make
- run: make test

#
###
### linux testing multiple Perl versions
###

perl-versions:
runs-on: ubuntu-latest
name: List Perl versions
outputs:
perl-versions: ${{ steps.action.outputs.perl-versions }}
steps:
- id: action
uses: perl-actions/perl-versions@v1
with:
since-perl: v5.8
with-devel: true

linux:
runs-on: ubuntu-latest
name: "perl v${{ matrix.perl-version }}"
name: "perl ${{ matrix.perl-version }}"

needs:
- ubuntu-latest
- perl-versions

strategy:
fail-fast: false
matrix:
perl-version:
- "5.38"
- "5.36"
- "5.34"
- "5.32"
- "5.30"
- "5.28"
- "5.26"
- "5.24"
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
- "5.8"

needs: ubuntu-latest
perl-version: ${{ fromJson (needs.perl-versions.outputs.perl-versions) }}

container:
image: perldocker/perl-tester:${{ matrix.perl-version }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: perl -V
- name: install deps using cpanm
uses: perl-actions/install-with-cpanm@v1
Expand Down

0 comments on commit 14655b0

Please sign in to comment.