try again - exclusions were not matching
[p5sagit/Sub-Name.git] / .travis.yml
CommitLineData
ee062e61 1sudo: false
2addons:
3 apt:
4 packages:
5 - aspell
6 - aspell-en
7language: perl
8perl:
9192694f 9 - "blead" # builds perl from git
ee062e61 10 - "blead-thr"
9192694f 11 - "dev" # latest point release
ee062e61 12 - "dev-thr"
13 - "5.26"
14 - "5.26-thr"
15 - "5.24"
16 - "5.24-thr"
17 - "5.22"
18 - "5.22-thr"
19 - "5.20"
20 - "5.20-thr"
21 - "5.18"
22 - "5.18-thr"
23 - "5.16"
24 - "5.16-thr"
25 - "5.14"
26 - "5.14-thr"
27 - "5.12"
28 - "5.12-thr"
29 - "5.10"
30 - "5.10-thr"
31 - "5.8"
32 - "5.8-thr"
33 - "5.6.2"
34 - "5.6.2-thr"
fa9cb0f4 35matrix:
36 allow_failures:
37 - perl: blead
38 - perl: blead-thr
323f3cea 39 # modules required for author testing do not build on 5.6
40 exclude:
41 - perl: "5.6.2"
323f3cea 42 - perl: "5.6.2-thr"
323f3cea 43 include:
44 - perl: "5.6.2"
45 env: AUTHOR_TESTING=0
46 - perl: "5.6.2-thr"
47 env: AUTHOR_TESTING=0
ee062e61 48env:
49 global:
50 - AUTHOR_TESTING=1
51 - AUTOMATED_TESTING=1
52 - RELEASE_TESTING=0
ee062e61 53before_install:
54 - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
9192694f 55 - source ~/travis-perl-helpers/init
ee062e61 56 - build-perl
57 - perl -V
58 - build-dist
59 - cd $BUILD_DIR
60install:
fa9cb0f4 61 - perl -M5.014 -e1 2>/dev/null || cpan-install Dist::Zilla@5.047
62 - cpan-install --deps
ee062e61 63script:
64 - perl Makefile.PL
65 - make
66 - prove -b -r -s -j$(test-jobs) $(test-files)