We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab87c3b commit d05416bCopy full SHA for d05416b
1 file changed
.travis.yml
@@ -0,0 +1,37 @@
1
+sudo: false
2
+addons:
3
+ apt:
4
+ packages:
5
+ - aspell
6
+language: perl
7
+perl:
8
+ - blead # builds perl from git
9
+ - dev # latest point release
10
+ - "5.26"
11
+ - "5.24"
12
+ - "5.22"
13
+ - "5.20"
14
+ - "5.18"
15
+ - "5.16"
16
+ - "5.14"
17
+ - "5.12"
18
+ - "5.10"
19
+ - "5.8"
20
+env:
21
+ global:
22
+ - AUTHOR_TESTING=1
23
+ - AUTOMATED_TESTING=1
24
+ - RELEASE_TESTING=0
25
+before_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
32
+install:
33
+ - cpan-install --deps
34
+script:
35
+ - perl Build.PL
36
+ - ./Build
37
+ - prove -b -r -s -j$(test-jobs) $(test-files)
0 commit comments