-
Notifications
You must be signed in to change notification settings - Fork 102
/
.travis.yml
73 lines (62 loc) · 2.52 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
language: perl
sudo: false
perl:
- "blead" # builds perl from git
- "dev" # latest point release
- "5.28"
- "5.26"
- "5.24"
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
- "5.8"
matrix:
allow_failures:
- perl: blead
- perl: dev
before_install:
- eval $(curl https://travis-perl.github.io/init) --perl
- $HELPERS_ROOT/bin/cpan-config
install:
- build-dist
- cd $BUILD_DIR
- cpanm -q --showdeps --with-develop . | grep -v "^perl[~@]" | AUTHOR_TESTING=0 cpanm --notest --metacpan --skip-satisfied
- test_run='make test'
- AUTHOR_TESTING=0 cpanm --notest --metacpan --skip-satisfied Test2::Harness && test_run='yath test t xt' || true
# enable various test options, including parallel testing
- export AUTOMATED_TESTING=1 HARNESS_OPTIONS=j10:c HARNESS_TIMER=1
# we want these for our tests, but not for any others
- export AUTHOR_TESTING=1
- export RELEASE_TESTING=1
- export PERL_AUTOINSTALL=--skip
script:
- make && $test_run
# Test reverse deps (high-profile modules, taken from from Task::Catalyst):
# (note: currently skipping DBIC deps for speed)
- make install
- export AUTHOR_TESTING=0
- export RELEASE_TESTING=0
# pure author deps (of reverse deps):
- cpanm --notest --metacpan --skip-satisfied YAML::Syck
- cpanm --notest --metacpan Carp::Assert::[email protected]
- cpanm --notest --metacpan Test::WWW::[email protected]
# both author deps & reverse deps:
- cpanm --metacpan --skip-satisfied Catalyst::View::TT || ( cat ~/.cpanm/build.log; false )
- cpanm --metacpan --skip-satisfied Catalyst::Plugin::Authentication || ( cat ~/.cpanm/build.log; false )
# pure reverse deps (call with --test-only):
- cpanm --test-only --metacpan -v Catalyst::Devel
- cpanm --test-only --metacpan -v Catalyst::Action::REST
- cpanm --test-only --metacpan -v Catalyst::Component::InstancePerContext
- cpanm --test-only --metacpan -v Catalyst::Plugin::Session
- cpanm --test-only --metacpan -v Catalyst::Plugin::Session::State::Cookie
- cpanm --test-only --metacpan -v Catalyst::Plugin::Static::Simple
- cpanm --test-only --metacpan -v Catalyst::Plugin::ConfigLoader
#- cpanm --test-only --verbose --metacpan Catalyst::Authentication::Credential::HTTP
# Still need to figure out why these fail in travis:
#- cpanm --test-only --metacpan -v Catalyst::View::Email
#- cpanm --test-only --metacpan -v Catalyst::Plugin::Session::Store::File
#- cpanm --test-only --metacpan -v Catalyst::Plugin::I18N