From 66b6255bb2dad18712dc1c743519d60352acd66e Mon Sep 17 00:00:00 2001 From: chocolateboy Date: Sun, 1 Apr 2018 13:26:20 +0100 Subject: [PATCH] update Travis config: dist: - remove `dist: trusty` as that's the default: https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming https://blog.travis-ci.com/2017-08-31-trusty-as-default-status Rubinius: - use the recommended Rubinius version (rbx-3): https://github.com/travis-ci/docs-travis-ci-com/pull/1534 - allow Rubinius tests to fail due to Travis/RVM issues and incompatibility with Rake: https://github.com/vmg/redcarpet/issues/580 https://github.com/ruby/rake/pull/150 MRI: - remove end-of-life Ruby versions: https://www.ruby-lang.org/en/downloads/branches/ --- .travis.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 832ec91..4cd6111 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,13 @@ sudo: false language: ruby -dist: trusty rvm: - jruby-9.1.13.0 - - 2.0.0 - - 2.1.10 - - 2.2.7 - - 2.3.4 - - 2.4.1 + - 2.3 + - 2.4 + - 2.5 - ruby-head - - rbx-3.69 + - rbx-3 script: bundle exec rspec +matrix: + allow_failures: + - rvm: rbx-3