forked from rest-client/rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (38 loc) · 852 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
# 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.5"
- "2.3.3"
- "2.4.0"
- "ruby-head"
- "jruby-9.0.5.0"
- "jruby-9.1.5.0"
- "jruby-head"
cache: bundler
script:
- bundle exec rake test
- bundle exec rake rubocop
branches:
except:
- "readme-edits"
before_install:
- gem update --system
# bundler installation needed for jruby-head
# https://github.com/travis-ci/travis-ci/issues/5861
- gem install bundler
# Travis OS X support is pretty janky. These are some hacks to include tests
# only on versions that actually work.
# (last tested: 2016-11)
matrix:
# exclude: {}
# include: {}
allow_failures:
- rvm: 'ruby-head'
# return results as soon as mandatory versions are done
fast_finish: true
sudo: false