From 10b7938f3d71f4142ca20b95c3267db8916e1a6c Mon Sep 17 00:00:00 2001 From: Robin Dupret Date: Sat, 14 Jan 2017 19:51:05 +0100 Subject: [PATCH] Update the Travis configuration file Update the build configuration to remove some useless steps and build on a Trusty version now as Rubinius only supports it. Finally, remove 1.9.2 from the build matrix as it doesn't work on Trusty but is EOL since 2014. --- .travis.yml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index 70005ef0..3e126153 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ sudo: false +dist: trusty addons: apt: @@ -7,26 +8,17 @@ addons: - tcl - tk -before_install: - - gem uninstall bundler -v 1.6.9 - - gem install bundler -v 1.11.2 -install: travis_retry bundle install --without=benchmark +install: bundle install --without=benchmark rvm: - - 1.9.2 - 1.9.3 - 2.0.0 - 2.1 - 2.2 - - 2.3.0 - - rbx-3 - - rbx + - 2.3.3 + - 2.4.0 + - rbx-3.69 - ruby-head -matrix: - allow_failures: - - rvm: rbx-3 - - rvm: rbx - notifications: email: false