| 
					
				 | 
			
			
				@@ -3,8 +3,8 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 # Automated creation of testing environments / binaries on misc. platforms 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-$cpus = Integer(ENV.fetch('VMCPUS', '4'))  # create VMs with that many cpus 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-$xdistn = Integer(ENV.fetch('XDISTN', '4'))  # dispatch tests to that many pytest workers 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+$cpus = Integer(ENV.fetch('VMCPUS', '16'))  # create VMs with that many cpus 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+$xdistn = Integer(ENV.fetch('XDISTN', '16'))  # dispatch tests to that many pytest workers 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 $wmem = $xdistn * 256  # give the VM additional memory for workers [MB] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 def packages_debianoid(user) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -278,6 +278,18 @@ Vagrant.configure(2) do |config| 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("focal64", ".*none.*") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   end 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  config.vm.define "jammy64" do |b| 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    b.vm.box = "ubuntu/jammy64" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    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("jammy64") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    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("jammy64", ".*none.*") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  end 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   config.vm.define "bullseye64" do |b| 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     b.vm.box = "debian/bullseye64" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     b.vm.provider :virtualbox do |v| 
			 |