Merge "Add xenial support to the Vagrantfile"

This commit is contained in:
Jenkins 2016-09-27 13:17:36 +00:00 committed by Gerrit Code Review
commit 19b8c679e4

18
Vagrantfile vendored
View File

@ -1,12 +1,26 @@
Vagrant.configure(2) do |config| Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |v| config.vm.provider "virtualbox" do |v|
v.memory = 2048 v.memory = 2048
v.cpus = 2 v.cpus = 2
end end
config.vm.provision "shell", inline: <<-SHELL
config.vm.define "ubuntu1404" do |trusty|
trusty.vm.box = "ubuntu/trusty64"
trusty.vm.provision "shell", inline: <<-SHELL
sudo su - sudo su -
cd /vagrant cd /vagrant
./run_tests.sh ./run_tests.sh
SHELL SHELL
end
config.vm.define "ubuntu1604" do |xenial|
xenial.vm.box = "ubuntu/xenial64"
xenial.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
apt-get install -y python2.7
./run_tests.sh
SHELL
end
end end