-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy path.travis.yml
56 lines (50 loc) · 1.29 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
language: "perl"
sudo: false
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "dev"
- "blead"
# slows down already cached versions by 3 (33s => 1m45s)
# (i.e. cache download: 9s, setup: 45s-130s)
# but speeds up building the non-cached versions (5.24-*) by 2 (3m50s => 1m45s)
# overall: 25min => 35min, so disable the perl cache
#cache:
# directories:
# - /home/travis/perl5/perlbrew/
# blead and 5.6 stumble over YAML and more missing dependencies
# for Devel::Cover::Report::Coveralls
# cpanm does not do 5.6
before_install:
- mkdir /home/travis/bin || true
- ln -s `which true` /home/travis/bin/cpansign
- eval $(curl https://travis-perl.github.io/init) --auto
install:
- export AUTOMATED_TESTING=1 HARNESS_TIMER=1 AUTHOR_TESTING=0 RELEASE_TESTING=0
#- cpan-install --deps # installs prereqs, including recommends
#- cpan-install Test::LeakTrace
- cpan-install --coverage # installs converage prereqs, if enabled
before_script:
- coverage-setup
notifications:
email:
on_success: change
on_failure: always
matrix:
fast_finish: true
include:
allow_failures:
- env: COVERAGE=1 AUTHOR_TESTING=1
- perl: "blead"
# Hack to not run on tag pushes:
branches:
except:
- /^v?[0-9]+\.[0-9]+/