Skip to content

Commit 920d512

Browse files
committed
.travis.yml: update for Xenial VMs
Travis uses Xenial VMs meanwhile, which have a very small subset of Perls available to test with. Signed-off-by: Jens Rehsack <[email protected]>
1 parent 8aca7cb commit 920d512

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

.travis.yml

+16-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
---
22
install:
3-
- cpanm --notest --skip-satisfied App::mymeta_requires
3+
- git clone git://github.com/travis-perl/helpers.git travis-perl-helpers
4+
- source travis-perl-helpers/init
45
- perl Makefile.PL
56
- make manifest
6-
- mymeta-requires --runtime --build --test --configure --develop --recommends --suggests | cpanm --notest --skip-satisfied
7+
- cpanm --notest --with-recommends --with-suggests --with-develop --installdeps .
8+
- cpan-install --coverage
79
language: perl
810
perl:
11+
- "5.30"
12+
- "5.28"
13+
- "5.26"
14+
- "5.26-shrplib"
915
- "5.24"
1016
- "5.22"
11-
- "5.20-extras"
12-
- "5.20"
13-
- "5.18-extras"
14-
- "5.18"
15-
- "5.16"
16-
- "5.14"
17-
- "5.12"
18-
- "5.10"
17+
matrix:
18+
include:
19+
- perl: "5.30"
20+
env: COVERAGE=1
21+
before_script:
22+
- coverage-setup
23+
after_success:
24+
- coverage-report

0 commit comments

Comments
 (0)