stow/.travis.yml

26 lines
545 B
YAML
Raw Permalink Normal View History

2015-11-13 06:13:06 -05:00
language: perl
perl:
- "5.20"
- "5.18"
- "5.16"
- "5.14"
2015-11-16 16:56:45 -05:00
sudo: false
2015-11-13 06:13:06 -05:00
addons:
apt:
packages:
- texinfo
- texlive
2015-11-16 20:43:38 -05:00
before_install:
- cpanm -n Devel::Cover::Report::Coveralls
install:
2015-11-13 06:13:06 -05:00
- autoreconf --install
- eval `perl -V:siteprefix`
# Note: this will complain Test::Output isn't yet installed:
2015-11-13 06:13:06 -05:00
- ./configure --prefix=$siteprefix && make
# but that's OK because we install it here:
- make cpanm
script:
- make distcheck
2015-11-16 20:43:38 -05:00
- perl Build.PL && ./Build build && cover -test -report coveralls
- ./Build distcheck