forked from ingydotnet/inline-c-pm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
57 lines (50 loc) · 852 Bytes
/
.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
# DO NOT EDIT
#
# This .travis.yml file generated by Zilla-Dist-0.0.189.
#
# To update it, run:
#
# > zild update
#
language: perl
perl:
- '5.20'
- '5.18'
- '5.16'
- '5.14'
- '5.12'
- '5.10'
- '5.8'
install:
- cpanm --quiet --notest
Devel::Cover::Report::Coveralls
autodie
ExtUtils::MakeMaker
File::Copy::Recursive
File::Spec
Inline
IO::All
Parse::RecDescent
Pegex
Test::More
Test::Warn
version
YAML::XS
script:
- true && [ ! -e test/ ] ||
PERL5OPT=-MDevel::Cover=-coverage,statement,branch,condition,path,subroutine
prove -lv test/
- true && [ ! -e test/ ] || cover
after_success:
- cover -report coveralls
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]+/