forked from rest-client/rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (40 loc) · 863 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
# Available ruby versions: http://rubies.travis-ci.org/
language: ruby
os:
- linux
- osx
rvm:
- "2.0.0"
- "2.1" # latest 2.1.x
- "2.2" # latest 2.2.x
- "2.3.1" # TODO: switch to "2.3" once travis fixes it
- "ruby-head"
- "jruby-9.0.5.0"
- "jruby-head"
script:
bundle exec rake test
branches:
except:
- "readme-edits"
# Travis OS X support is pretty janky. These are some hacks to include tests
# only on versions that actually work.
# (last tested: 2016-04)
matrix:
exclude:
- os: osx
rvm: '2.2'
- os: osx
rvm: '2.3.1' # No 2.3.x at all
include:
- os: osx
rvm: '2.2.2' # Travis OS X doesn't have 2.2 aliases
allow_failures:
- rvm: 'ruby-head'
- os: osx
rvm: 'jruby-9.0.5.0'
- os: osx
rvm: 'jruby-head'
- os: linux
rvm: 'jruby-head'
fast_finish: true
sudo: false