Add bionic to Vagrantfile
In order to use vagrant for OSA on bionic testing, we add a Vagrantfile entry for it. Change-Id: Ice11b93edfecf10ada33c5ffaf569f8e52c102ba
This commit is contained in:
parent
28f71196cd
commit
ae34c2218e
11
Vagrantfile
vendored
11
Vagrantfile
vendored
@ -42,6 +42,17 @@ Vagrant.configure(2) do |config|
|
|||||||
SHELL
|
SHELL
|
||||||
end
|
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|
|
config.vm.define "centos7" do |centos7|
|
||||||
centos7.vm.box = "centos/7"
|
centos7.vm.box = "centos/7"
|
||||||
centos7.disksize.size = disk_size
|
centos7.disksize.size = disk_size
|
||||||
|
Loading…
x
Reference in New Issue
Block a user