mirror of
https://github.com/rest-client/rest-client.git
synced 2022-11-09 13:49:40 -05:00
50 lines
993 B
YAML
50 lines
993 B
YAML
# Available ruby versions: http://rubies.travis-ci.org/
|
|
|
|
language: ruby
|
|
sudo: false
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
rvm:
|
|
- "2.1" # latest 2.1.x
|
|
- "2.2.10"
|
|
- "2.3.8"
|
|
- "2.4.6"
|
|
- "2.5.5"
|
|
- "2.6.3"
|
|
- "ruby-head"
|
|
- "jruby-9.1.9.0"
|
|
- "jruby-head"
|
|
|
|
cache: bundler
|
|
|
|
script:
|
|
- bundle exec rake test
|
|
- bundle exec rake rubocop
|
|
|
|
branches:
|
|
except:
|
|
- "readme-edits"
|
|
|
|
before_install:
|
|
# Install rubygems < 3.0 so that we can support ruby < 2.3
|
|
# https://github.com/rubygems/rubygems/issues/2534
|
|
- gem install rubygems-update -v '<3' && update_rubygems
|
|
# 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
|