mirror of
https://github.com/borgbackup/borg.git
synced 2024-11-15 13:55:06 +03:00
Vagrant: drop ubuntu precise (12.04)
it only has python 3.2 and we require >= 3.4.
This commit is contained in:
parent
21d9436992
commit
111bb19443
16
Vagrantfile
vendored
16
Vagrantfile
vendored
@ -10,13 +10,6 @@ def packages_prepare_wheezy
|
||||
EOF
|
||||
end
|
||||
|
||||
def packages_prepare_precise
|
||||
return <<-EOF
|
||||
# ubuntu 12.04 precise does not have lz4, but it is available from a ppa:
|
||||
add-apt-repository -y ppa:gezakovacs/lz4
|
||||
EOF
|
||||
end
|
||||
|
||||
def packages_debianoid
|
||||
return <<-EOF
|
||||
apt-get update
|
||||
@ -336,15 +329,6 @@ Vagrant.configure(2) do |config|
|
||||
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("trusty64")
|
||||
end
|
||||
|
||||
config.vm.define "precise32" do |b|
|
||||
b.vm.box = "ubuntu/precise32"
|
||||
b.vm.provision "packages prepare precise", :type => :shell, :inline => packages_prepare_precise
|
||||
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid
|
||||
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("precise32")
|
||||
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("precise32")
|
||||
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("precise32")
|
||||
end
|
||||
|
||||
config.vm.define "jessie64" do |b|
|
||||
b.vm.box = "debian/jessie64"
|
||||
b.vm.provider :virtualbox do |v|
|
||||
|
Loading…
Reference in New Issue
Block a user