forked from munin-monitoring/munin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (39 loc) · 785 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
38
39
40
41
42
43
language: perl
perl:
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
branches:
only:
- stable-2.0
- devel
- master
- travis-container
addons:
apt:
packages:
- devscripts
notifications:
email: false
irc:
on_success: change # no need for spam
on_failure: always
channels:
- "irc.oftc.net#munin"
template:
- "%{repository} (%{branch} - %{commit} : %{author}): %{message}"
- "Build details: %{build_url}"
matrix:
# we don't need to continue any build when 1 test is failing.
fast_finish: true
env:
- TEST_MEDIUM=1
before_install:
cpanm -n Devel::Cover::Report::Coveralls
script:
perl Build.PL && ./Build build && cover -test -report coveralls
# Using the container-based infrastructure
sudo: false