Adding Vagrantfile for developer testing

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

Change-Id: Iae6b09d993d10fff9f27b302e59d1615aca87080
This commit is contained in:
Travis Truman 2016-08-03 22:24:55 -04:00
parent adf63d9b9e
commit 2c756d2874
2 changed files with 12 additions and 0 deletions

3
.gitignore vendored
View File

@ -58,3 +58,6 @@ ChangeLog
# Files created by releasenotes build
releasenotes/build
# 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