Adding Vagrantfile for local development/testing
Running `vagrant up` will run the same tests that are run during gate check. Change-Id: I080d62b7887c541904d3a3929179f225efd1ec42
This commit is contained in:
parent
a246b5cb28
commit
a34729a601
13
Vagrantfile
vendored
Normal file
13
Vagrantfile
vendored
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user