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