Merge "Add bionic to Vagrantfile"

This commit is contained in:
Zuul 2018-12-04 16:58:58 +00:00 committed by Gerrit Code Review
commit 04cfe8b9d8
1 changed files with 11 additions and 0 deletions

11
Vagrantfile vendored
View File

@ -42,6 +42,17 @@ Vagrant.configure(2) do |config|
SHELL
end
config.vm.define "ubuntu1804" do |bionic|
bionic.vm.box = "ubuntu/bionic64"
bionic.disksize.size = disk_size
config.vm.provision "shell",
privileged: true,
inline: <<-SHELL
cd /vagrant
./scripts/gate-check-commit.sh
SHELL
end
config.vm.define "centos7" do |centos7|
centos7.vm.box = "centos/7"
centos7.disksize.size = disk_size