Make our .travis.yml a little easier to maintain.
This commit is contained in:
parent
ab8f2d6bb1
commit
c5818d1837
18
.travis.yml
18
.travis.yml
|
@ -1,23 +1,23 @@
|
||||||
bundler_args: --without benchmark:site:development
|
|
||||||
before_script: bundle update
|
before_script: bundle update
|
||||||
|
bundler_args: --without benchmark:site:development
|
||||||
script: script/cibuild
|
script: script/cibuild
|
||||||
cache: bundler
|
cache: bundler
|
||||||
language: ruby
|
language: ruby
|
||||||
sudo: false
|
sudo: false
|
||||||
|
|
||||||
rvm:
|
rvm:
|
||||||
- 2.0.0-p648
|
- &ruby1 2.3.0
|
||||||
- 2.1.8
|
- &ruby2 2.2.4
|
||||||
- 2.2.4
|
- &ruby3 2.1.8
|
||||||
- 2.3.0
|
- &ruby4 2.0.0-p648
|
||||||
- jruby-9.0.4.0
|
- &jruby jruby-9.0.4.0
|
||||||
- ruby-head
|
- &rhead ruby-head
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- rvm: jruby-9.0.4.0
|
- rvm: *jruby
|
||||||
- rvm: ruby-head
|
- rvm: *rhead
|
||||||
env:
|
env:
|
||||||
matrix:
|
matrix:
|
||||||
- TEST_SUITE=test
|
- TEST_SUITE=test
|
||||||
|
|
Loading…
Reference in New Issue