-
Notifications
You must be signed in to change notification settings - Fork 15
/
.travis.yml
37 lines (32 loc) · 874 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
language: perl
perl:
- "5.24"
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
- "5.8"
env:
global:
- stableperl=5.24
before_install:
- perlbrew list
- "perlbrew exec --with $stableperl 'cpanm --quiet --notest Dist::Zilla'"
- "perlbrew exec --with $stableperl 'dzil authordeps | cpanm --quiet --notest'"
- "perlbrew exec --with $stableperl 'dzil build --in $builddir'"
install:
- cpanm --quiet --notest --installdeps --skip-satisfied Dist::Zilla
- cpanm Test::NoTabs
- "dzil authordeps | grep -vP '[^\\w:]' | cpanm --verbose --notest --skip-satisfied"
- "dzil listdeps | grep -vP '[^\\w:]' | cpanm --verbose --skip-satisfied"
script:
- "perlbrew exec --with $stableperl 'dzil smoke --release --author'"
notifications:
email:
recipients:
- llap@cpan.org
on_success: change
on_failure: always