Remove xenial from Vagrantfile

As xenial is not planned to be supported for the
Stein release, we remove it from the Vagrantfile.

Change-Id: Ic8d6e5c65e9a1752919edc8035ddae0833a72dd9
This commit is contained in:
Jesse Pretorius 2018-12-04 10:08:33 +00:00
parent ae34c2218e
commit 879d58f861
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