X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=.travis.yml;h=165595d6ba77693e1926d3d9e410d3e75380566b;hb=HEAD;hp=e1cb77b645cce8062f021dff5fecbffd8c868ce4;hpb=232af08d745589480ae30500d86cfcba25daf414;p=p5sagit%2FTry-Tiny.git diff --git a/.travis.yml b/.travis.yml index e1cb77b..165595d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,36 @@ language: perl perl: - - "5.22" - - "5.20" - - "5.18" - - "5.16" - - "5.14" - - "5.12" - - "5.10" + - blead # builds perl from git + - dev # latest point release + - "5.34" + - "5.32" + - "5.30" + - "5.28" + - "5.26" + - "5.24" + - "5.22" + - "5.20" + - "5.18" + - "5.16" + - "5.14" + - "5.12" + - "5.10" + - "5.8" +env: + global: + - AUTHOR_TESTING=1 + - AUTOMATED_TESTING=1 + - RELEASE_TESTING=0 +before_install: + - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers + - source ~/travis-perl-helpers/init + - build-perl + - perl -V + - build-dist + - cd $BUILD_DIR install: - - cpanm -q --notest Dist::Zilla || (cat /home/travis/.cpanm/build.log; false) - - dzil authordeps --missing | cpanm -q --notest || (cat /home/travis/.cpanm/build.log; false) - - dzil listdeps --author --missing | cpanm -q --notest || (cat /home/travis/.cpanm/build.log; false) + - cpan-install --deps script: - - dzil test --all + - perl Makefile.PL + - make + - prove -b -r -s -j$(test-jobs) $(test-files)