Added perl 5.20 worker to travis config
[catagits/Catalyst-Runtime.git] / .travis.yml
CommitLineData
209210df 1language: perl
2perl:
94c34b14 3 - "5.20"
44cf0958 4 - "5.18"
209210df 5 - "5.16"
6 - "5.14"
7 - "5.12"
8 - "5.10"
adde9a4e 9 - "5.8"
209210df 10
11install:
209210df 12 # for testing
6168fe6b 13 - cpanm --notest --metacpan --skip-satisfied YAML
209210df 14
15 # M::I deps
6168fe6b 16 - cpanm --notest --metacpan --skip-satisfied Module::Install Module::Install::AuthorRequires Module::Install::CheckConflicts Module::Install::AuthorTests Module::Install::Authority
209210df 17
18 # author deps -- wish there was a better way
6168fe6b 19 - cpanm --notest --metacpan --skip-satisfied CatalystX::LeakChecker Catalyst::Devel Catalyst::Engine::PSGI Starman MooseX::Daemonize Test::WWW::Mechanize::Catalyst Catalyst::Plugin::Params::Nested
20 - cpanm --notest --metacpan --skip-satisfied Test::Without::Module Test::NoTabs Test::Pod Test::Pod::Coverage Test::Spelling Pod::Coverage::TrustPod
21 - cpanm --notest --metacpan --skip-satisfied --installdeps .
44cf0958 22 - echo y | perl Makefile.PL
209210df 23
6168fe6b 24 # enable various test options, including parallel testing
25 - export AUTOMATED_TESTING=1 HARNESS_OPTIONS=j10:c HARNESS_TIMER=1
26
209210df 27 # we want these for our tests, but not for any others
28 - export AUTHOR_TESTING=1
29 - export RELEASE_TESTING=1
30
31 - make manifest
32
33script:
34 - make disttest