From 60a9528a82643b3bddda7f73287b843121b0ccbd Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Mon, 4 Apr 2022 16:47:07 -0500 Subject: [PATCH] ci: Install Ruby 2.7 and not latest, which is catching 3.x --- test/vagrant-spec/scripts/ubuntu-install-vagrant.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/vagrant-spec/scripts/ubuntu-install-vagrant.sh b/test/vagrant-spec/scripts/ubuntu-install-vagrant.sh index 4804e15bb..53300c675 100755 --- a/test/vagrant-spec/scripts/ubuntu-install-vagrant.sh +++ b/test/vagrant-spec/scripts/ubuntu-install-vagrant.sh @@ -9,8 +9,10 @@ go version # Install Ruby curl -sSL https://rvm.io/pkuczynski.asc | sudo gpg --import - -curl -sSL https://get.rvm.io | bash -s stable --ruby +curl -sSL https://get.rvm.io | bash -s stable source /usr/local/rvm/scripts/rvm +rvm install ruby-2.7 +rvm --default use ruby-2.7 pushd /vagrant