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