fix travis config
[p5sagit/Safe-Isa.git] / .travis.yml
CommitLineData
5a053954 1addons:
2 apt:
3 packages:
4 - aspell
5language: perl
6perl:
7 - blead # builds perl from git
8 - dev # latest point release
9 - "5.26"
10 - "5.24"
11 - "5.22"
12 - "5.20"
13 - "5.18"
14 - "5.16"
15 - "5.14"
16 - "5.12"
17 - "5.10"
18 - "5.8"
19 - "5.6.2"
20matrix:
21 include:
22 - perl: 5.18
23 env: COVERAGE=1
24env:
25 global:
26 - AUTHOR_TESTING=1
27 - AUTOMATED_TESTING=1
28 - RELEASE_TESTING=0
29before_install:
30 - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
31 - source ~/travis-perl-helpers/init
32 - build-perl
33 - perl -V
34 - build-dist
35 - cd $BUILD_DIR
36install:
37 - cpan-install --deps
38script:
39 - perl Makefile.PL
40 - make
fbd214f4 41 - prove -b -r -s -j$(test-jobs) $(test-files)