last attempt tested 5.6 twice, once with AUTHOR_TESTING=1, once with =0.. try again.
[p5sagit/Sub-Name.git] / .travis.yml
1 sudo: false
2 addons:
3   apt:
4     packages:
5       - aspell
6       - aspell-en
7 language: perl
8 perl:
9   - "blead"         # builds perl from git
10   - "blead-thr"
11   - "dev"           # latest point release
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     # modules required for author testing do not build on 5.6
34   - "5.6.2"
35     env: AUTHOR_TESTING=0
36   - "5.6.2-thr"
37     env: AUTHOR_TESTING=0
38 matrix:
39   allow_failures:
40     - perl: blead
41     - perl: blead-thr
42 env:
43   global:
44     - AUTHOR_TESTING=1
45     - AUTOMATED_TESTING=1
46     - RELEASE_TESTING=0
47 before_install:
48   - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
49   - source ~/travis-perl-helpers/init
50   - build-perl
51   - perl -V
52   - build-dist
53   - cd $BUILD_DIR
54 install:
55   - perl -M5.014 -e1 2>/dev/null || cpan-install Dist::Zilla@5.047
56   - cpan-install --deps
57 script:
58   - perl Makefile.PL
59   - make
60   - prove -b -r -s -j$(test-jobs) $(test-files)