forked from DrHyde/perl-modules-Number-Phone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
30 lines (30 loc) · 1.07 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
language: perl
perl:
- "5.8"
- "5.20"
- "5.22"
matrix:
include:
- perl: "5.20"
before_install:
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
# eeuuww, repetition from the global 'before_install'
- cpanm --quiet --notest XML::XPath
- cpanm --quiet --notest DBM::Deep
- cpanm --quiet --notest Digest::MD5
- cpanm --quiet --notest File::Find::Rule
- cpanm --quiet --notest Spreadsheet::ParseExcel
- cpanm --quiet --notest Text::CSV_XS
- ./build-data.sh
# repetition ends here
script: "perl Makefile.PL && make && cover -ignore blib/lib/Number/Phone/UK/Data.pm -test -report coveralls"
# -ignore blib/lib/Number/Phone/StubCountry/??.pm -ignore blib/lib/Number/Phone/NANP/??.pm
before_install:
- cpanm --quiet --notest XML::XPath
- cpanm --quiet --notest DBM::Deep
- cpanm --quiet --notest Digest::MD5
- cpanm --quiet --notest File::Find::Rule
- cpanm --quiet --notest Spreadsheet::ParseExcel
- cpanm --quiet --notest Text::CSV_XS
- ./build-data.sh
sudo: false