b04ea0e26dbfd9c53a5647071c51bb4646e790f5
[catagits/Catalyst-Runtime.git] / .travis.yml
1 language: perl
2 perl:
3    - "5.20"
4    - "5.18"
5    - "5.16"
6    - "5.14"
7    - "5.12"
8    - "5.10"
9    - "5.8"
10
11 install:
12    # for testing
13    - cpanm --notest --metacpan --skip-satisfied YAML
14
15    # M::I deps
16    - cpanm --notest --metacpan --skip-satisfied Module::Install Module::Install::AuthorRequires Module::Install::CheckConflicts Module::Install::AuthorTests Module::Install::Authority
17
18    # author deps -- wish there was a better way
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 .
22    - echo y | perl Makefile.PL
23
24    # enable various test options, including parallel testing
25    - export AUTOMATED_TESTING=1 HARNESS_OPTIONS=j10:c HARNESS_TIMER=1
26
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
33 script:
34    - make disttest