Skip to content

Bump the minor-and-patch group with 2 updates #488

Bump the minor-and-patch group with 2 updates

Bump the minor-and-patch group with 2 updates #488

Workflow file for this run

---
name: dzil build and test
on:
push:
branches:
- "master"
pull_request:
branches:
- "*"
merge_group:
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@v6
- name: Run Tests
env:
AUTHOR_TESTING: 1
AUTOMATED_TESTING: 1
EXTENDED_TESTING: 1
RELEASE_TESTING: 1
run: upgrade-perl-helpers && auto-build-and-test-dist
- uses: actions/upload-artifact@v7
with:
name: build_dir
path: build_dir
coverage-job:
name: Coverage
needs: build-job
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.42
steps:
- uses: actions/checkout@v6 # codecov wants to be inside a Git repository
- uses: actions/download-artifact@v8
with:
name: build_dir
path: .
- name: Install deps and test
run: cpan-install-dist-deps --with-develop && test-dist
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
linter-job:
name: lint
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.42
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install deps and test
run: cpan-install-dist-deps --with-develop
- name: Install precious and omegasort
uses: oalders/install-ubi-action@v0.0.6
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
projects: |
houseabsolute/omegasort
houseabsolute/precious
- name: precious lint
run: |
if [ "${{ github.ref }}" = "refs/heads/master" ]; then
precious lint -q --all
else
git fetch origin master:refs/remotes/origin/master
precious lint -q --git-diff-from origin/${{ github.base_ref }}
fi
http-one-one-regression-job:
name: HTTP/1.1 Keepalive Regression Test - see GH \# 14
needs: build-job
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:5.42
steps:
- uses: actions/download-artifact@v8
with:
name: build_dir
path: .
- name: Install libcurl headers
# perl-tester:5.42 (bookworm) ships libcurl runtime but not the dev
# package; LWP::Protocol::Net::Curl is XS and needs curl-config.
run: apt-get update && apt-get install -y --no-install-recommends libcurl4-openssl-dev
- name: Install deps including curl and test
run: >
cpan-install-dist-deps --with-develop
&& cpanm LWP::Protocol::Net::Curl
- name: test
run: test-dist
env:
PERL5OPT: -MLWP::Protocol::Net::Curl=http_version,2
test-linux:
name: "${{ matrix.perl-version }} on Linux"
needs: build-job
runs-on: ubuntu-latest
container:
image: "perldocker/perl-tester:${{ matrix.perl-version }}"
strategy:
fail-fast: false
matrix:
perl-version:
# - "5.8"
- "5.10"
- "5.12"
- "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"
steps:
- name: pin Test::Deep to 1.130 on Perl < 5.12
if: ${{ matrix.perl-version == '5.8' || matrix.perl-version == '5.10' }}
run: cpanm --notest Test::Deep@1.130
- uses: actions/checkout@v6
- uses: actions/download-artifact@v8
with:
name: build_dir
path: .
- name: Install deps and test
run: cpan-install-dist-deps && test-dist
test-macos:
name: ${{ matrix.perl-version }} on macos-latest
needs: test-linux
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
perl-version:
- "5.24"
- "5.26"
- "5.28"
- "5.30"
- "5.32"
- "5.34"
- "5.36"
- "5.38"
- "5.40"
- "5.42"
steps:
- name: Set Up Perl
uses: shogo82148/actions-setup-perl@v1.41.1
with:
perl-version: ${{ matrix.perl-version }}
- name: pin Test::Deep to 1.130 on Perl < 5.12
if: ${{ matrix.perl-version == '5.8' || matrix.perl-version == '5.10' }}
run: cpm install --global Test::Deep@1.130
- uses: actions/download-artifact@v8
with:
name: build_dir
path: .
- name: install deps using cpm
uses: perl-actions/install-with-cpm@v2.3
with:
cpanfile: "cpanfile"
args: "--with-suggests --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
test-windows:
name: ${{ matrix.perl-version }} on windows-latest
needs: test-linux
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
perl-version:
- "5.28"
- "5.30"
- "5.32"
steps:
- name: Set Up Perl
uses: shogo82148/actions-setup-perl@v1.41.1
with:
perl-version: ${{ matrix.perl-version }}
distribution: strawberry # this option only used on Windows
- name: pin Test::Deep to 1.130 on Perl < 5.12
if: ${{ matrix.perl-version == '5.8' || matrix.perl-version == '5.10' }}
run: cpm install --global Test::Deep@1.130
- uses: actions/download-artifact@v8
with:
name: build_dir
path: .
- name: install deps using cpm
uses: perl-actions/install-with-cpm@v2.3
with:
cpanfile: "cpanfile"
args: "--with-suggests --with-test --with-develop"
# 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: cpanm --test-only -v .