From a34729a6018568d8895234c58a023497b22fa422 Mon Sep 17 00:00:00 2001 From: Travis Truman Date: Thu, 23 Jun 2016 11:11:48 -0400 Subject: [PATCH] Adding Vagrantfile for local development/testing Running `vagrant up` will run the same tests that are run during gate check. Change-Id: I080d62b7887c541904d3a3929179f225efd1ec42 --- Vagrantfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 00000000..d09fc560 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,13 @@ +Vagrant.configure(2) do |config| + config.vm.box = "ubuntu/trusty64" + config.vm.provider "virtualbox" do |v| + v.memory = 2048 + v.cpus = 2 + end + config.vm.provision "shell", inline: <<-SHELL + sudo su - + cd /vagrant + apt-get update + ./run_tests.sh + SHELL +end \ No newline at end of file