ba243c0a61
e.g. make STRICT_TESTS=1 However we don't need this in .travis.yml as explained in the comments.
25 lines
545 B
YAML
25 lines
545 B
YAML
language: perl
|
|
perl:
|
|
- "5.20"
|
|
- "5.18"
|
|
- "5.16"
|
|
- "5.14"
|
|
sudo: false
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- texinfo
|
|
- texlive
|
|
before_install:
|
|
- cpanm -n Devel::Cover::Report::Coveralls
|
|
install:
|
|
- autoreconf --install
|
|
- eval `perl -V:siteprefix`
|
|
# Note: this will complain Test::Output isn't yet installed:
|
|
- ./configure --prefix=$siteprefix && make
|
|
# but that's OK because we install it here:
|
|
- make cpanm
|
|
script:
|
|
- make distcheck
|
|
- perl Build.PL && ./Build build && cover -test -report coveralls
|
|
- ./Build distcheck
|