Add Ubuntu Trusty vm for testing

This commit is contained in:
Marcin Kulik
2014-06-19 20:23:57 +02:00
parent ef306a6ef6
commit 5a715abfda

5
Vagrantfile vendored
View File

@@ -15,6 +15,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
c.vm.provision "shell", inline: "pacman -Sy && pacman -S --noconfirm make python2-pip fakeroot binutils && pip2 install nose"
end
config.vm.define "ubuntu-trusty" do |c|
c.vm.box = "ubuntu/trusty64"
c.vm.provision "shell", inline: "apt-get update && apt-get install python-pip make -y && pip install nose"
end
config.vm.define "ubuntu-raring" do |c|
c.vm.box = "raring64"
c.vm.box_url = "http://bit.ly/vagrant-lxc-raring64-2013-09-28-"