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