-
Notifications
You must be signed in to change notification settings - Fork 19
/
.travis.yml
71 lines (62 loc) · 1.1 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# DO NOT EDIT
#
# This .travis.yml file generated by Zilla-Dist-0.1.5.
#
# To update it, run:
#
# > zild update
#
language: perl
matrix:
include:
- perl: '5.30'
env: COVERAGE=1
- perl: '5.28'
- perl: '5.26'
- perl: '5.24'
- perl: '5.22'
- perl: '5.20'
- perl: '5.18'
- perl: '5.16'
- perl: '5.14'
- perl: '5.12'
- perl: '5.10'
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init
- build-perl
- local-lib cache
- perl -V
install:
- cpan-install --coverage
autodie
ExtUtils::MakeMaker~7.00
File::Copy::Recursive
File::Path
File::Spec~0.8
File::Temp~0.19
Inline~0.86
Parse::RecDescent~1.967009
Pegex~0.66
Test::More~0.88
Test::Warn~0.23
version~0.77
YAML::XS
before_script:
coverage-setup
script:
- true &&
prove -lv test/
after_success:
- coverage-report
notifications:
irc:
channels:
- irc.perl.org#inline
on_success: change
on_failure: always
skip_join: true
# Hack to not run on tag pushes:
branches:
except:
- /^v?[0-9]+\.[0-9]+/