From ee6ff9a709695ae447c5ac3f3b9b2b909a9b573d Mon Sep 17 00:00:00 2001 From: Travis Truman Date: Fri, 5 Aug 2016 11:27:08 -0400 Subject: [PATCH] Adding Vagrantfile for developer testing Running `vagrant up` will launch a Trusty box and then run all of the gate checks Change-Id: I55b763e51b24d3e2dd8f63e1039dbca5a9b9643f --- .gitignore | 3 +++ Vagrantfile | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 Vagrantfile diff --git a/.gitignore b/.gitignore index 036f683..ca2ac14 100644 --- a/.gitignore +++ b/.gitignore @@ -61,3 +61,6 @@ releasenotes/build # Test temp files tests/plugins + +# Vagrant testing artifacts +.vagrant diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..cea04e3 --- /dev/null +++ b/Vagrantfile @@ -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 \ No newline at end of file