Skip to content

Commit

Permalink
add 5.22 and 5.24 to default perl_version string
Browse files Browse the repository at this point in the history
  • Loading branch information
mschout committed Jul 3, 2016
1 parent 2b750cd commit 935270e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -2,6 +2,8 @@ sudo: false
language: perl
perl:
- 'blead'
- '5.24'
- '5.22'
- '5.20'
- '5.18'
- '5.16'
Expand Down
2 changes: 1 addition & 1 deletion lib/Dist/Zilla/Role/TravisYML.pm
Expand Up @@ -70,7 +70,7 @@ has irc_template => ( rw, isa => ArrayRef[Str], default => sub { [
"%{branch}#%{build_number} by %{author}: %{message} (%{build_url})",
] } );

has perl_version => ( rw, isa => Str, default => '-blead 5.20 5.18 5.16 5.14 5.12 5.10 -5.8' );
has perl_version => ( rw, isa => Str, default => '-blead 5.24 5.22 5.20 5.18 5.16 5.14 5.12 5.10 -5.8' );
has perl_version_build => ( rw, isa => Str, lazy, default => sub { shift->perl_version } );

has _releases => ( ro, isa => ArrayRef[Str], lazy, default => sub {
Expand Down
4 changes: 2 additions & 2 deletions t/01-basic.t
Expand Up @@ -86,7 +86,7 @@ test_travis_yml(
# Perl version testing
test_travis_yml(
{},
perl => [ qw(blead 5.20 5.18 5.16 5.14 5.12 5.10 5.8) ],
perl => [ qw(blead 5.24 5.22 5.20 5.18 5.16 5.14 5.12 5.10 5.8) ],
matrix => {
fast_finish => 'true',
allow_failures => [ { perl => 'blead' }, { perl => '5.8' } ],
Expand All @@ -107,7 +107,7 @@ test_travis_yml(
test_travis_yml(
{ support_builddir => 1, perl_version_build => '5.8 -5.55' },
env => [ 'BUILD=0', 'BUILD=1' ],
perl => [ qw(blead 5.20 5.18 5.16 5.14 5.12 5.10 5.8 5.55) ],
perl => [ qw(blead 5.24 5.22 5.20 5.18 5.16 5.14 5.12 5.10 5.8 5.55) ],
matrix => {
fast_finish => 'true',
allow_failures => [
Expand Down

0 comments on commit 935270e

Please sign in to comment.