Merge "Add support for Vagrant deployment"

This commit is contained in:
Jenkins 2016-06-17 21:19:33 +00:00 committed by Gerrit Code Review
commit aa0a0d6f5b
1 changed files with 9 additions and 0 deletions

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