1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-01 12:45:34 +00:00

Merge pull request #7554 from ThomasWaldmann/vagrant-updates

vagrant: add lunar64 VM
This commit is contained in:
TW 2023-05-10 17:41:38 +02:00 committed by GitHub
commit c7aa0cc5d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
Vagrantfile vendored
View file

@ -351,6 +351,18 @@ Vagrant.configure(2) do |config|
v.cpus = $cpus
end
config.vm.define "lunar64" do |b|
b.vm.box = "ubuntu/lunar64"
b.vm.provider :virtualbox do |v|
v.memory = 1024 + $wmem
end
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant")
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("lunar64")
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("llfuse")
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("lunar64", ".*none.*")
end
config.vm.define "jammy64" do |b|
b.vm.box = "ubuntu/jammy64"
b.vm.provider :virtualbox do |v|