25 lines
783 B
YAML
25 lines
783 B
YAML
---
|
|
sudo: false
|
|
cache:
|
|
directories:
|
|
- $HOME/.cpanm
|
|
- $HOME/perl5/perlbrew/perls/5.16/lib/site_perl
|
|
- /var/tmp
|
|
addons:
|
|
apt_packages:
|
|
- libmpfr-dev
|
|
before_install:
|
|
- export HARNESS_OPTIONS=j10:c HARNESS_TIMER=1
|
|
- git config --global user.name "Dist Zilla Plugin TravisCI"
|
|
- git config --global user.email $HOSTNAME":not-for-mail@travis-ci.org"
|
|
install:
|
|
- npm install -g uglify-js handlebars
|
|
- cpanm --quiet --notest Dist::Zilla
|
|
- dzil authordeps | grep -ve '^\W' | xargs -n 5 -P 10 cpanm --quiet --notest --mirror http://www.cpan.org/ --mirror http://duckpan.org
|
|
- dzil listdeps | grep -ve '^\W' | cpanm --quiet --notest --mirror http://www.cpan.org/ --mirror http://duckpan.org
|
|
language: perl
|
|
perl:
|
|
- 5.16
|
|
script:
|
|
- dzil smoke --release --author
|