-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (40 loc) · 1.16 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
language: perl
cache:
directories:
# local::lib caching
- $HOME/perl5
- maint/cpanfile-git-log
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: "blead"
os: linux
dist: trusty
sudo: false
- perl: "system"
os: osx
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 PERL_ALT_INSTALL=OVERWRITE
- 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"}' )"
script:
- perl Makefile.PL && make test
- make install
- export ARCHFLAGS='-arch x86_64';
- "perl ./maint/install-zmq-libzmq.pl --test-only ZMQ::LibZMQ3"
- "perl ./maint/install-zmq-libzmq.pl --test-only ZMQ::LibZMQ4"