-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
60 lines (51 loc) · 938 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
language: "perl"
sudo: false
perl:
- "5.8"
- "5.8.7"
- "5.22"
- "5.14"
- "5.22-dbg"
- "5.20"
- "5.18"
- "5.16"
- "5.12"
- "5.10"
- "5.14-thr"
- "5.22-thr-dbg"
- "dev"
- "blead"
addons:
apt:
packages:
- gperf
coverity_scan:
project:
name: "perl11/p5-Config"
description: "Config as XS"
build_command_prepend: "perl Makefile.PL"
build_command: "make -s -j4"
branch_pattern: coverity
cache:
apt: true
os:
- linux
# - osx
# osx has no perlbrew
branches:
only:
- master
- /smoke/
- /coverity/
matrix:
fast_finish: true
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:
- cpan-install --deps
- export COVERAGE=0 AUTOMATED_TESTING=1
script: "perl Makefile.PL && make && make test"
notifications:
irc: "irc.perl.org#perl11"