Merge "Remove xenial from Vagrantfile"

This commit is contained in:
Zuul 2018-12-07 23:23:49 +00:00 committed by Gerrit Code Review
commit b615107dd1
1 changed files with 0 additions and 11 deletions

11
Vagrantfile vendored
View File

@ -31,17 +31,6 @@ Vagrant.configure(2) do |config|
# Configure the disk size.
disk_size = "60GB"
config.vm.define "ubuntu1604" do |xenial|
xenial.vm.box = "ubuntu/xenial64"
xenial.disksize.size = disk_size
config.vm.provision "shell",
privileged: true,
inline: <<-SHELL
cd /vagrant
./scripts/gate-check-commit.sh
SHELL
end
config.vm.define "ubuntu1804" do |bionic|
bionic.vm.box = "ubuntu/bionic64"
bionic.disksize.size = disk_size