Skip to content

Commit

Permalink
travis.yml: move tests to modern Perl5 releases
Browse files Browse the repository at this point in the history
Travis CI cleaned up their framework heavily, so move forward to test with
a bunch of recent perl versions.

Signed-off-by: Jens Rehsack <[email protected]>
  • Loading branch information
rehsack committed Sep 28, 2020
1 parent 002d68b commit d52b5ad
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
---
install:
- cpanm --notest --skip-satisfied App::mymeta_requires
- git clone git://github.com/travis-perl/helpers.git travis-perl-helpers
- source travis-perl-helpers/init
- perl Makefile.PL
- make manifest
- mymeta-requires --runtime --build --test --configure --develop --recommends --suggests | cpanm
- cpanm --notest --with-recommends --with-suggests --with-develop --installdeps .
- cpan-install --coverage
language: perl
perl:
- "5.20-extras"
- "5.30"
- "5.28"
- "5.26-shrplib"
- "5.26"
- "5.24-shrplib"
- "5.24"
- "5.22"
- "5.20"
- "5.18-extras"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
sudo: false
matrix:
include:
- perl: "5.30"
env: COVERAGE=1
before_script:
- coverage-setup
after_success:
- coverage-report

0 comments on commit d52b5ad

Please sign in to comment.