mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-07 23:18:43 +00:00
vagrant: add ubuntu/xenial 64bit
this box has still some issues, but hopefully they will be fixed soon.
This commit is contained in:
parent
9068a40e2e
commit
cd3c36780a
1 changed files with 11 additions and 0 deletions
11
Vagrantfile
vendored
11
Vagrantfile
vendored
|
@ -327,6 +327,17 @@ Vagrant.configure(2) do |config|
|
|||
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("centos6_64")
|
||||
end
|
||||
|
||||
config.vm.define "xenial64" do |b|
|
||||
b.vm.box = "ubuntu/xenial64"
|
||||
b.vm.provider :virtualbox do |v|
|
||||
v.memory = 768
|
||||
end
|
||||
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid
|
||||
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("trusty64")
|
||||
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("trusty64")
|
||||
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("trusty64")
|
||||
end
|
||||
|
||||
config.vm.define "trusty64" do |b|
|
||||
b.vm.box = "ubuntu/trusty64"
|
||||
b.vm.provider :virtualbox do |v|
|
||||
|
|
Loading…
Reference in a new issue