openstack-ansible-os_watcher/Vagrantfile
Michael Gugino c62beb2372 Add scaffolding for OpenStack-CI tests
Change-Id: I760a5af77f6baccbc7ac87e001223b3f06233449
2016-08-24 10:38:52 -04:00

24 lines
526 B
Ruby

Vagrant.configure(2) do |config|
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
end
config.vm.define "ubuntu1404" do |trusty|
trusty.vm.box = "ubuntu/trusty64"
trusty.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./run_tests.sh
SHELL
end
config.vm.define "ubuntu1604" do |xenial|
xenial.vm.box = "ubuntu/xenial64"
xenial.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./run_tests.sh
SHELL
end
end