Skip to content

Commit 1188d2e

Browse files
committed
upgrade ci to perl 5.42
1 parent 1937759 commit 1188d2e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
# Build the module on several versions of Perl using an image that already has a lot of modules installed.
1010
# This will provide a fast feedback if a commit broke anything in the unit-tests.
11-
# Using 5.32 we also create the tar.gz file and save it as an artifact.
11+
# Using 5.42 we also create the tar.gz file and save it as an artifact.
1212
#
1313
# Once this job passed we launch several jobs in parallel
1414
# 1) Verify that we can install the created distribution on many versions of Perl using a Linux Docker image with vanilla Perl.
@@ -61,7 +61,7 @@ jobs:
6161
make test
6262
6363
- name: Create release
64-
if: ${{ matrix.perl-version == '5.32' }}
64+
if: ${{ matrix.perl-version == '5.42' }}
6565
run: |
6666
# Increase the version number by 0.000001 so in the reports we can be sure we are using the code to be released.
6767
perl -i -p -e "s/VERSION\s*=\s*'(\d+\.\d+)'/q{VERSION = '} . (\$1 + 0.01) . q{'}/e" lib/Debug/Client.pm
@@ -71,7 +71,7 @@ jobs:
7171
make dist
7272
7373
- name: Archive artifacts
74-
if: ${{ matrix.perl-version == '5.32' }}
74+
if: ${{ matrix.perl-version == '5.42' }}
7575
uses: actions/upload-artifact@v6
7676
with:
7777
name: the-release
@@ -136,7 +136,7 @@ jobs:
136136
matrix:
137137
runner: [ubuntu-latest, macos-latest, windows-latest]
138138
#runner: [windows-latest]
139-
perl: [ '5.32' ]
139+
perl: [ '5.42' ]
140140

141141
runs-on: ${{matrix.runner}}
142142
name: Native on OS ${{matrix.runner}} Perl ${{matrix.perl}}

0 commit comments

Comments
 (0)