Adding Vagrantfile for developer testing

Running `vagrant up` will launch a Trusty box
and then run all of the gate checks

Change-Id: I55b763e51b24d3e2dd8f63e1039dbca5a9b9643f
This commit is contained in:
Travis Truman 2016-08-05 11:27:08 -04:00
parent 68e7e05ac8
commit ee6ff9a709
2 changed files with 12 additions and 0 deletions

3
.gitignore vendored
View File

@ -61,3 +61,6 @@ releasenotes/build
# Test temp files
tests/plugins
# Vagrant testing artifacts
.vagrant

9
Vagrantfile vendored Normal file
View File

@ -0,0 +1,9 @@
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
apt-get update
./run_tests.sh
SHELL
end