Running `vagrant up` will execute run_tests.sh and perform doc build, lint and functional tests Change-Id: I5816e83217239c2ca623e95c486b49546b8338db
9 lines
196 B
Ruby
9 lines
196 B
Ruby
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 |