Skip to content

Commit c91bb8a

Browse files
authored
Bump Perl from 5.40 to 5.42. Use pinned Docker images. (#98)
1 parent 8bfe650 commit c91bb8a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM perl:5.40.0-slim-bookworm
1+
FROM perl:5.42.2-slim-bookworm@sha256:49f4e5e7e2fc5b12e5fc9b5a0603d96502feb24b97babd1bdf42e3f1fc3ebc43
22

33
RUN apt-get update && \
44
apt-get install -y curl npm expect-dev && \

bin/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ else
4545
test_file="${input_dir}/${slug}.t"
4646
fi
4747
chmod +x $test_file
48-
HARNESS_ACTIVE=1 PERL5OPT='-MXXX=-global' unbuffer perl -I"${input_dir}/lib" -I"${input_dir}/local/lib/perl5" $test_file 2>&1 | tap-parser -j 0 > "${output_dir}/tap.json"
48+
TABLE_TERM_SIZE=120 HARNESS_ACTIVE=1 PERL5OPT='-MXXX=-global' unbuffer perl -I"${input_dir}/lib" -I"${input_dir}/local/lib/perl5" $test_file 2>&1 | tap-parser -j 0 > "${output_dir}/tap.json"
4949
bin/transform-results.pl "${output_dir}/tap.json" "${results_file}" $test_file
5050

5151
echo "${slug}: done"

bin/transform-results.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env perl
22

3-
use v5.40;
3+
use v5.42;
44

55
use Cpanel::JSON::XS ();
66
use Path::Tiny qw<path>;

tests/example-unicode/lib/Leap.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Leap;
22

3-
use v5.40;
3+
use v5.42;
44

55
use Exporter qw<import>;
66
our @EXPORT_OK = qw<truncate_post>;

0 commit comments

Comments
 (0)