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
|
language: ruby
script: "script/test_all"
bundler_args: "--standalone --binstubs --without documentation"
before_install:
- gem update --system --conservative || (gem i "rubygems-update:~>2.7" --no-document && update_rubygems)
- gem update bundler --conservative
# In order to install old Rubies, we need to use old Ubuntu distibution.
dist: trusty
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- 2.2.10
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
- ree
- jruby-19mode
- jruby-18mode
env:
- BRANCH=master
- BRANCH=2-99-maintenance
|