Adding Vagrantfile for local testing

Running `vagrant up ubuntu1404` brings up
a Trusty box and runs all of the gate checks

Change-Id: I47525461bc1e9a2145e754d1243ee1cb090e906c
This commit is contained in:
Travis Truman 2016-09-06 14:29:53 -04:00
parent dbcd0986a3
commit 9596eb5af0
2 changed files with 29 additions and 0 deletions

5
.gitignore vendored
View File

@ -29,6 +29,7 @@ doc/build/
*.log
*.sql
*.sqlite
logs/*
# OS generated files #
######################
@ -61,3 +62,7 @@ releasenotes/build
# Test temp files
tests/plugins
# Vagrant artifacts
.vagrant

24
Vagrantfile vendored Normal file
View File

@ -0,0 +1,24 @@
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