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