-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
66 lines (57 loc) · 1.04 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
# DO NOT EDIT
#
# This .travis.yml file generated by Zilla-Dist-0.1.4.
#
# 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:
- git clone
git://github.com/testml-lang/testml ../testml
- cpan-install --coverage
boolean~0.46
JSON::PP
Pegex~0.74
YAML::PP~0.018
before_script:
coverage-setup
script:
- true &&
source ../testml/.rc &&
TESTML_RUN=perl5-tap
prove -lv test/
after_success:
- coverage-report
notifications:
irc:
channels:
- irc.freenode.net#jsony
on_success: change
on_failure: always
skip_join: true
# Hack to not run on tag pushes:
branches:
except:
- /^v?[0-9]+\.[0-9]+/