summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Rieder <1301152+aried3r@users.noreply.github.com>2020-05-29 10:38:42 +0200
committerGitHub <noreply@github.com>2020-05-29 10:38:42 +0200
commit0862e95fb2eb09cffc02b3393c1b0a78df643d25 (patch)
treed40f5c9d8405c699a70a1289f955e1dbb16cb3cc
parent56bbb28a301b4c37c25f1f41d21f88431ab09e43 (diff)
downloadhashie-0862e95fb2eb09cffc02b3393c1b0a78df643d25.tar.gz
Test with Ruby 2.7
`sudo: false` is deprecated. https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration
-rw-r--r--.travis.yml19
1 files changed, 9 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index c71f565..d0a6c7d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,31 +1,30 @@
language: ruby
-sudo: false
cache: bundler
rvm:
- - 2.5.3
- - 2.4.5
- - 2.3.8
- - 2.2.9
- - 2.1.10
+ - 2.7
+ - 2.6
+ - 2.5
+ - 2.4
+ - 2.3
+ - 2.2
+ - 2.1
- ruby-head
matrix:
include:
- - rvm: 2.5.3
+ - rvm: 2.5
name: "Run Danger and Code Climate"
before_script:
- bundle exec danger
after_script:
- bundle exec codeclimate-test-reporter
- - rvm: 2.5.3
+ - rvm: 2.5
name: "Integration Tests"
install:
- for dir in spec/integration/*; do BUNDLE_GEMFILE=$dir/Gemfile bundle; done
script:
- set -e ; for dir in spec/integration/*; do BUNDLE_GEMFILE=$dir/Gemfile bundle exec rspec $dir; done
- - rvm: 2.6.6
- dist: bionic
- rvm: rbx-3
dist: trusty
bundler_args: --retry 0