forked from fluent/fluentd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
77 lines (71 loc) · 1.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
language: ruby
cache: bundler
# script: bundle exec rake test TESTOPTS=-v
# http://rubies.travis-ci.org/
# See here for osx_image -> OSX versions: https://docs.travis-ci.com/user/languages/objective-c
matrix:
include:
- rvm: 2.4.9
os: linux
env: USE_CAPNG=false
- rvm: 2.4.9
os: linux-ppc64le
env: USE_CAPNG=false
- rvm: 2.5.7
os: linux
env: USE_CAPNG=false
- rvm: 2.5.7
os: linux
arch: s390x
dist: xenial
env: USE_CAPNG=false
- rvm: 2.6.5
os: linux
env: USE_CAPNG=false
- rvm: 2.6.6
os: linux
env: USE_CAPNG=true
- rvm: 2.7.0
os: linux
env: USE_CAPNG=false
- rvm: ruby-head
os: linux
env: USE_CAPNG=false
- rvm: ruby-head
os: linux-ppc64le
env: USE_CAPNG=false
- rvm: 2.4.6
os: osx
osx_image: xcode8.3 # OSX 10.12
env: USE_CAPNG=false
- rvm: ruby-head
os: osx
osx_image: xcode8.3 # OSX 10.12
env: USE_CAPNG=false
allow_failures:
- rvm: 2.4.6
os: osx
osx_image: xcode8.3
env: USE_CAPNG=false
- rvm: 2.5.7
os: linux
arch: s390x
dist: xenial
env: USE_CAPNG=false
- rvm: ruby-head
env: USE_CAPNG=false
branches:
only:
- master
before_install: |
gem update --system=3.1.2
if [[ x"${USE_CAPNG}" == "xtrue" ]]; then
echo 'gem "capng_c"' >> Gemfile.local
fi
sudo: false
dist: trusty # for TLSv1.2 support
addons:
apt:
packages:
- libgmp3-dev
- libcap-ng-dev