From 2dc0085870b4d67cd8cc9e75fb89e2c3e2296a63 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 8 Apr 2023 20:52:48 +0200 Subject: [PATCH] vagrant: add lunar64 VM --- Vagrantfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 1729516d2..8eb50b144 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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|