travis is deprecating container-based environments
[p5sagit/Sub-Name.git] / .travis.yml
CommitLineData
e1737edb 1addons:
2 apt:
3 packages:
4 - aspell
5 - aspell-en
6language: perl
7perl:
8 - "blead" # builds perl from git
9 - "blead-thr"
10 - "dev" # latest point release
11 - "dev-thr"
12 - "5.26"
13 - "5.26-thr"
14 - "5.24"
15 - "5.24-thr"
16 - "5.22"
17 - "5.22-thr"
18 - "5.20"
19 - "5.20-thr"
20 - "5.18"
21 - "5.18-thr"
22 - "5.16"
23 - "5.16-thr"
24 - "5.14"
25 - "5.14-thr"
26 - "5.12"
27 - "5.12-thr"
28 - "5.10"
29 - "5.10-thr"
30 - "5.8"
31 - "5.8-thr"
32matrix:
33 allow_failures:
34 - perl: blead
35 - perl: blead-thr
36 include:
37 # modules required for author testing do not build on 5.6
38 - perl: "5.6.2"
39 env: AUTHOR_TESTING=0
40 - perl: "5.6.2-thr"
41 env: AUTHOR_TESTING=0
42env:
43 global:
44 - AUTHOR_TESTING=1
45 - AUTOMATED_TESTING=1
46 - RELEASE_TESTING=0
47before_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
54install:
55 - cpan-install --deps
56script:
57 - perl Makefile.PL
58 - make
59 - prove -b -r -s -j$(test-jobs) $(test-files)