-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
39 lines (39 loc) · 1.03 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
language: perl
cache:
directories:
# local::lib caching
- $HOME/perl5
addons:
apt:
packages:
- aspell # for dzil Test::PodSpelling
- aspell-en # for dzil Test::PodSpelling
matrix:
include:
- perl: "5.16"
os: linux
dist: trusty
sudo: false
- perl: "5.18"
env: COVERAGE=1 # enables coverage+coveralls reporting
os: linux
dist: trusty
sudo: false
- perl: "5.20"
os: linux
dist: trusty
sudo: false
- perl: "5.26"
os: linux
dist: trusty
sudo: false
- perl: "blead"
os: linux
dist: trusty
sudo: false
allow_failures:
- perl: blead # ignore failures for blead perl
sudo: false # faster builds as long as you don't need sudo access
before_install:
- export DEVOPS_BRANCH="master"
- eval "$(curl https://raw.githubusercontent.com/project-renard/devops/$DEVOPS_BRANCH/script/helper.pl | perl -- | awk '/^#START/,/^#END/ { print > "/dev/stdout"; next } { print > "/dev/stderr"}' )"