Skip to content

Bump shogo82148/actions-setup-perl from 1 to 1.41.0 #86

Bump shogo82148/actions-setup-perl from 1 to 1.41.0

Bump shogo82148/actions-setup-perl from 1 to 1.41.0 #86

---
name: dzil build and test
on:
push:
branches:
- "master"
pull_request:
branches:
- "*"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-job:
name: Build distribution
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.42
steps:
- uses: actions/checkout@v3
- name: Run Tests
env:
AUTHOR_TESTING: 1
AUTOMATED_TESTING: 1
EXTENDED_TESTING: 1
RELEASE_TESTING: 1
run: auto-build-and-test-dist
- uses: actions/upload-artifact@v4
with:
name: build_dir
path: build_dir
coverage-job:
needs: build-job
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.42
steps:
- uses: actions/checkout@v3 # codecov wants to be inside a Git repository
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: Install deps and test
run: cpan-install-dist-deps && test-dist
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
httpbin-job:
needs: build-job
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: Pull httpbin Docker image
run: docker pull kennethreitz/httpbin
- name: Run httpbin
run: docker run -d -p 31234:80 kennethreitz/httpbin
- name: docker pull perldocker/perl-tester:5.36
run: docker pull perldocker/perl-tester:5.36
- name: Run tests via Docker
run: >
docker run
--network="host"
--env AUTHOR_TESTING=1
-v
$(pwd):/home/dist perldocker/perl-tester:5.36
/bin/sh -c "cd /home/dist && cpan-install-dist-deps && prove -lv xt/rt-112313.t"
ubuntu-test-job:
needs: build-job
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
perl-version:
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
- "5.32"
- "5.34"
- "5.36"
- "5.38"
- "5.40"
- "5.42"
name: perl ${{ matrix.perl-version }} on ${{ matrix.os }}
steps:
- name: set up perl
uses: shogo82148/actions-setup-perl@v1.41.0
with:
perl-version: ${{ matrix.perl-version }}
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: install deps using cpm
uses: perl-actions/install-with-cpm@v2
with:
cpanfile: "cpanfile"
args: "--with-suggests --with-recommends"
# App::cpm v0.999.0+ requires Perl 5.24+; pin older Perls to the last compatible release.
version: ${{ matrix.perl-version <= '5.22' && '0.998003' || 'main' }}
- run: prove -lr t
env:
AUTHOR_TESTING: 1
RELEASE_TESTING: 1
macos-test-job:
needs: ubuntu-test-job
runs-on: "macos-latest"
strategy:
fail-fast: false
matrix:
os: [macos-latest]
perl-version:
- "5.24"
- "5.26"
- "5.28"
- "5.30"
- "5.32"
- "5.36"
- "5.38"
- "5.40"
- "5.42"
name: perl ${{ matrix.perl-version }} on ${{ matrix.os }}
steps:
- name: set up perl
uses: shogo82148/actions-setup-perl@v1.41.0
with:
perl-version: ${{ matrix.perl-version }}
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: install deps using cpm
uses: perl-actions/install-with-cpm@v2
with:
cpanfile: "cpanfile"
args: "--with-suggests --with-recommends"
# App::cpm v0.999.0+ requires Perl 5.24+; pin older Perls to the last compatible release.
version: ${{ matrix.perl-version <= '5.22' && '0.998003' || 'main' }}
- run: prove -lr t
env:
AUTHOR_TESTING: 1
RELEASE_TESTING: 1
windows-test-job:
needs: ubuntu-test-job
runs-on: "windows-latest"
strategy:
fail-fast: false
matrix:
os: [windows-latest]
perl-version:
- "5.28"
- "5.30"
name: perl ${{ matrix.perl-version }} on ${{ matrix.os }}
steps:
- name: set up perl
uses: shogo82148/actions-setup-perl@v1.41.0
with:
perl-version: ${{ matrix.perl-version }}
distribution: strawberry # this option only used on windows
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
- name: install IO::Socket::SSL > 2.024 # Windows tests fail with 2.024, so we are getting the ...
run: cpm install -g IO::Socket::SSL@2.089 # ... latest version available at the time of writing
- name: install deps using cpm
uses: perl-actions/install-with-cpm@v2
with:
cpanfile: "cpanfile"
args: "--with-suggests --with-recommends --with-test"
# App::cpm v0.999.0+ requires Perl 5.24+; pin older Perls to the last compatible release.
version: ${{ matrix.perl-version <= '5.22' && '0.998003' || 'main' }}
- run: prove -lr t
env:
AUTHOR_TESTING: 0
RELEASE_TESTING: 0