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

51 lines
872 B
YAML
Raw Normal View History

# Available ruby versions: http://rubies.travis-ci.org/
2013-02-19 07:25:41 -06:00
language: ruby
2015-08-12 00:25:08 -07:00
os:
- linux
- osx
2013-02-19 07:25:41 -06:00
rvm:
2013-02-22 16:34:22 -08:00
- "2.0.0"
2015-03-13 18:01:52 -07:00
- "2.1" # latest 2.1.x
2017-07-05 04:04:27 -04:00
- "2.2.7"
2017-02-18 19:21:06 -05:00
- "2.3.3"
2017-07-05 04:04:27 -04:00
- "2.4.1"
- "ruby-head"
- "jruby-9.0.5.0"
- "jruby-9.1.5.0"
2017-07-05 04:04:27 -04:00
- "jruby-9.1.9.0"
2015-04-29 10:32:59 -07:00
- "jruby-head"
2017-02-18 22:19:36 -05:00
cache: bundler
2014-04-02 00:23:13 -07:00
script:
2017-07-05 03:15:00 -04:00
- 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
2015-09-27 12:47:41 -07:00
# Travis OS X support is pretty janky. These are some hacks to include tests
# only on versions that actually work.
# (last tested: 2016-11)
2015-09-27 12:47:41 -07:00
matrix:
# exclude: {}
# include: {}
allow_failures:
- rvm: 'ruby-head'
# return results as soon as mandatory versions are done
2016-05-01 17:47:59 -04:00
fast_finish: true
sudo: false