Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use containers, test with 5.22, blead & dev, allow blead failures, add coverage on 5.22, use travis-perl --auto #22

Merged
merged 2 commits into from Jun 29, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .stopwords
Expand Up @@ -31,6 +31,7 @@ VPN
YYY
YYYZZZ
ZZZ
anonymizing
com
contentDeliveryNetwork
de
Expand Down
52 changes: 27 additions & 25 deletions .travis.yml
@@ -1,32 +1,34 @@
---
sudo: false
addons:
apt:
packages:
- aspell
- aspell-en
language: perl

perl:
- "blead"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"

- blead
- dev
- '5.22'
- '5.20'
- '5.18'
- '5.16'
- '5.14'
- '5.12'
- '5.10'
matrix:
allow_failures:
- perl: blead
include:
- env: COVERAGE=1
perl: '5.22'
env:
global:
- RELEASE_TESTING=1
- AUTHOR_TESTING=1
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init
- build-perl
- perl -V
- cpanm --notest Devel::Cover::Report::Coveralls
- export AUTOMATED_TESTING=1 HARNESS_OPTIONS=j10:c HARNESS_TIMER=1 SKIP_POD_LINKCHECK=1
- git submodule update --init --recursive

install:
- cpan-install --deps

script:
perl Makefile.PL build && cover -test

after_success:
cover -report coveralls

- eval $(curl https://travis-perl.github.io/init) --auto
notifications:
email:
recipients:
Expand Down