1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00
rest-client--rest-client/.travis.yml

43 lines
843 B
YAML
Raw Normal View History

# Available ruby versions: http://rubies.travis-ci.org/
2013-02-19 08:25:41 -05:00
language: ruby
2015-08-12 03:25:08 -04:00
os:
- linux
- osx
2013-02-19 08:25:41 -05:00
rvm:
2013-02-22 19:34:22 -05:00
- "2.0.0"
2015-03-13 21:01:52 -04:00
- "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"
2015-04-29 13:32:59 -04:00
- "jruby-head"
2014-04-02 03:23:13 -04:00
script:
bundle exec rake test
branches:
except:
- "readme-edits"
2015-09-27 15:47:41 -04:00
# Travis OS X support is pretty janky. These are some hacks to include tests
# only on versions that actually work.
# (last tested: 2016-04)
2015-09-27 15:47:41 -04:00
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'
sudo: false