diff options
author | Tim Smith <tsmith@chef.io> | 2016-12-13 09:16:46 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2016-12-13 22:43:03 -0800 |
commit | cf4d58911befa7be537eb9c40d2a13fb16e52874 (patch) | |
tree | 358a6ee448785b901d590c7ebf03dd02da5ca887 | |
parent | c56cf68d67e01c0923009b58e01d24ce0efe537d (diff) | |
download | chef-cf4d58911befa7be537eb9c40d2a13fb16e52874.tar.gz |
Replace rbx with ruby-head in Travisruby24
rbx is failing to install in travis as rvm wants to install via binary
and there isn't a binary install available. Swap for Ruby head instead
so we can test on Ruby 2.4
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index b08ec2d049..065e03bc07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ matrix: script: sudo -E $(which bundle) exec rake spec; # also remove integration / external tests bundler_args: --without changelog development docgen guard integration maintenance omnibus_package tools aix bsd mac_os_x solaris windows --frozen - - rvm: rbx + - rvm: ruby-head sudo: true script: sudo -E $(which bundle) exec rake spec; # also remove integration / external tests @@ -329,7 +329,7 @@ matrix: - sudo cat /var/log/squid3/access.log allow_failures: - - rvm: rbx + - rvm: ruby-head notifications: on_change: true |