From ae34c2218e199499756bb3014afb70811dd6455f Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Fri, 23 Nov 2018 12:56:17 +0000 Subject: [PATCH] Add bionic to Vagrantfile In order to use vagrant for OSA on bionic testing, we add a Vagrantfile entry for it. Change-Id: Ice11b93edfecf10ada33c5ffaf569f8e52c102ba --- Vagrantfile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 4a531031a6..67ea96e994 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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