no AUTHOR_TESTING/RELEASE_TESTING for downstream tests
[catagits/Catalyst-Runtime.git] / .travis.yml
1 language: perl
2 sudo: false
3 perl:
4    - "5.26"
5    - "5.24"
6    - "5.22"
7    - "5.20"
8    - "5.18"
9    - "5.16"
10    - "5.14"
11    - "5.12"
12    - "5.10"
13    - "5.8"
14
15 before_install:
16    - eval $(curl https://travis-perl.github.io/init)
17    - $HELPERS_ROOT/bin/cpan-config
18 install:
19    - cpanm --notest --metacpan --skip-satisfied --with-develop --installdeps .
20    - perl Makefile.PL
21
22    # enable various test options, including parallel testing
23    - export AUTOMATED_TESTING=1 HARNESS_OPTIONS=j10:c HARNESS_TIMER=1
24
25    # we want these for our tests, but not for any others
26    - export AUTHOR_TESTING=1
27    - export RELEASE_TESTING=1
28    - export PERL_AUTOINSTALL=--skip
29
30    - make manifest
31
32 script:
33    - make disttest
34
35    # Test reverse deps (high-profile modules, taken from from Task::Catalyst):
36    #  (note: currently skipping DBIC deps for speed)
37    - make install
38
39    - export AUTHOR_TESTING=0
40    - export RELEASE_TESTING=0
41
42    # pure author deps (of reverse deps):
43    - cpanm --notest --metacpan --skip-satisfied YAML::Syck
44
45    # both author deps & reverse deps:
46    - cpanm --metacpan --skip-satisfied Catalyst::View::TT
47    - cpanm --metacpan --skip-satisfied Catalyst::Plugin::Authentication
48
49    # pure reverse deps (call with --test-only):
50    - cpanm --test-only --metacpan -v Catalyst::Devel
51    - cpanm --test-only --metacpan -v Catalyst::Action::REST
52    - cpanm --test-only --metacpan -v Catalyst::Component::InstancePerContext
53    - cpanm --test-only --metacpan -v Catalyst::Plugin::Session
54    - cpanm --test-only --metacpan -v Catalyst::Plugin::Session::State::Cookie
55    - cpanm --test-only --metacpan -v Catalyst::Plugin::Static::Simple
56    - cpanm --test-only --metacpan -v Catalyst::Plugin::ConfigLoader
57    - cpanm --test-only --metacpan -v Catalyst::Plugin::ConfigLoader
58    #- cpanm --test-only --verbose --metacpan Catalyst::Authentication::Credential::HTTP
59
60    # Still need to figure out why these fail in travis:
61    #- cpanm --test-only --metacpan -v Catalyst::View::Email
62    #- cpanm --test-only --metacpan -v Catalyst::Plugin::Session::Store::File
63    #- cpanm --test-only --metacpan -v Catalyst::Plugin::I18N