diff options
author | Tim Smith <tsmith84@gmail.com> | 2019-09-30 11:22:43 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2019-09-30 12:28:22 -0700 |
commit | a5f31197f47283e7b808fca8442b10439332457b (patch) | |
tree | 5b19169c80d0a308a2b726469455028bc4717df8 /scripts | |
parent | aa494dced9ebd99ae145a16950079dfb8b1c029f (diff) | |
download | chef-a5f31197f47283e7b808fca8442b10439332457b.tar.gz |
Avoid rake failures in the test kitchen tests
Also skip the docs installs here to speed things up
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bk_tests/bk_linux_exec.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/bk_tests/bk_linux_exec.sh b/scripts/bk_tests/bk_linux_exec.sh index fee73aa6bb..12c7594a8d 100755 --- a/scripts/bk_tests/bk_linux_exec.sh +++ b/scripts/bk_tests/bk_linux_exec.sh @@ -30,11 +30,11 @@ sudo git clone https://github.com/asdf-vm/asdf.git /opt/asdf . /opt/asdf/completions/asdf.bash echo "--- Installing Ruby ASDF plugin" -/opt/asdf/bin/asdf plugin-add ruby https://github.com/asdf-vm/asdf-ruby.git +/opt/asdf/bin/asdf plugin-add ruby https://github.com/asdf-vm/asdf-ruby.git -echo "--- Installing Ruby 2.5.5" -/opt/asdf/bin/asdf install ruby 2.5.5 -/opt/asdf/bin/asdf global ruby 2.5.5 +echo "--- Installing Ruby 2.6.4" +/opt/asdf/bin/asdf install ruby 2.6.4 +/opt/asdf/bin/asdf global ruby 2.6.4 # Update Gems gem update --system $(grep rubygems omnibus_overrides.rb | cut -d'"' -f2) |