-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (52 loc) · 835 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
dist: trusty
sudo: false
group: beta
language: ruby
before_install:
- gem install bundler
script:
- bundle exec rake compile || bundle exec rake compile
- bundle exec rake test
os:
- linux
- osx
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2.8
- 2.3.5
- 2.4.3
- 2.5.0
- ruby-head
- rbx
- system
env:
- CC=gcc
- CC=clang
matrix:
allow_failures:
- rvm: system
- os: osx
rvm: 2.0.0
- os: osx
rvm: ruby-head
- rvm: rbx
- rvm: rbx-head
- rvm: 1.9.3
exclude: # ruby 2.4.2 needs build with xcode9 or later on osx
- os: osx
rvm: 2.4.2
include:
- os: osx
osx_image: xcode9.1
rvm: 2.4.2
env:
- CC=gcc
- os: osx
osx_image: xcode9.1
rvm: 2.4.2
env:
- CC=clang
after_failure:
- "find build -name mkmf.log | xargs cat"