no automatic travis testing for wip/blocked branches
[gitmo/Moo.git] / .travis.yml
CommitLineData
f3230f2a 1language: perl
2perl:
4399a9e5 3 - "5.18"
4 - "5.12.5"
6b63d62a 5 - "5.8.4"
6 - "5.8.4_thr"
f3230f2a 7before_install:
c5dda91c 8 - source maint/travis-perlbrew
f3230f2a 9 - perlbrew install-cpanm -f
10 - perl -V
11install:
e6ca9e76 12 - cpanm --verbose --no-interactive --no-man-pages --notest strictures autodie ExtUtils::MakeMaker
13 - cpanm --verbose --no-interactive --no-man-pages --notest --installdeps --with-develop --with-recommends --with-suggests .
14 - cpanm --verbose --no-interactive --no-man-pages --notest Devel::Cover::Report::Coveralls
f3230f2a 15script:
16 - maint/fulltest --cover
17after_success:
18 - cover -report coveralls
ce31148b 19branches:
20 except:
21 - /^wip\//
22 - /^blocked/
f3230f2a 23notifications:
24 email: false
25 on_success: change
26 on_failure: change