Change-Id: I739651ff2c36fbe487abb3ad7f56038c0a12e748 Implements: blueprint trusty-removal
9 lines
178 B
Ruby
9 lines
178 B
Ruby
Vagrant.configure(2) do |config|
|
|
config.vm.box = "ubuntu/xenial64"
|
|
config.vm.provision "shell", inline: <<-SHELL
|
|
sudo su -
|
|
cd /vagrant
|
|
./run_tests.sh
|
|
SHELL
|
|
end
|