Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Resolves #31] Add latest ruby verisons to test matrix #32

Merged
merged 5 commits into from
Apr 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ services:
- docker
rvm:
- jruby-9.2.11.0
- 2.4.3
- 2.5.0
- 2.6.2
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.1
- jruby-head
- ruby-head

branches:
Expand All @@ -27,18 +29,16 @@ before_install:
- sudo /etc/init.d/mysql stop
- sudo /etc/init.d/postgresql stop
- docker-compose up -d
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem uninstall bundler -v '>= 2' -x || true
- gem install bundler -v '< 2'
env:
RUBY_GC_MALLOC_LIMIT: 90000000
RUBY_GC_HEAP_FREE_SLOTS: 200000
jobs:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- gemfile: gemfiles/rails_master.gemfile
exclude:
- rvm: 2.4.3
- rvm: 2.4.10
gemfile: gemfiles/rails_6_0.gemfile
fast_finish: true
cache: bundler
2 changes: 1 addition & 1 deletion apartment.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Gem::Specification.new do |s|
s.add_dependency 'rack', '>= 1.3.6', '< 3.0'

s.add_development_dependency 'appraisal', '~> 2.2'
s.add_development_dependency 'bundler', '>= 1.3', '< 2.0'
s.add_development_dependency 'bundler', '>= 1.3', '< 3.0'
s.add_development_dependency 'capybara', '~> 2.0'
s.add_development_dependency 'rake', '~> 0.9'
s.add_development_dependency 'rspec', '~> 3.4'
Expand Down