From b51217cd0a6d74166480465ae0f1f4c095b715d3 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sun, 28 Jun 2015 15:38:16 -0500 Subject: [PATCH] Use travis-perl helpers, test with more Perls, use containers, and more travis goodness --- .travis.yml | 40 ++++++++++++++++++++++++++++------------ 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index e9f133b..0055b1d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,30 @@ +--- +sudo: false +addons: + apt: + packages: + - aspell + - aspell-en language: perl perl: - - "5.19" - - "5.18" - - "5.16" - - "5.14" - - "5.12" - - "5.10" -install: - - cpanm -q --notest Dist::Zilla - - dzil authordeps --missing | cpanm -q --notest - - dzil listdeps --author --missing | cpanm -q --notest -script: - - dzil test --all + - blead + - dev + - '5.22' + - '5.20' + - '5.18' + - '5.16' + - '5.14' + - '5.12' + - '5.10' +matrix: + allow_failures: + - perl: blead + include: + - env: COVERAGE=1 + perl: '5.22' +env: + global: + - RELEASE_TESTING=1 + - AUTHOR_TESTING=1 +before_install: + - eval $(curl https://travis-perl.github.io/init) --auto