X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/e2416f90af990126e0f624ccb076cebd49485aec..086116b3a14f84a5d23b33acd5390245aea88d71:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index 753b1833..99aa8449 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -34,6 +34,14 @@ Vagrant.configure("2") do |config| end end + config.vm.provider "parallels" do |prl, override| + prl.update_guest_tools = false + prl.memory = 2048 + if ENV['CHECKOUT'] != 'y' then + override.vm.synced_folder ".", "/home/vagrant/Nominatim" + end + end + config.vm.provider "libvirt" do |lv, override| lv.memory = 2048 lv.nested = true @@ -71,6 +79,10 @@ Vagrant.configure("2") do |config| config.vm.define "ubuntu24" do |sub| sub.vm.box = "bento/ubuntu-24.04" + if RUBY_PLATFORM.include?('darwin') && RUBY_PLATFORM.include?('arm64') + # Apple M processor + sub.vm.box = 'gutehall/ubuntu24-04' + end sub.vm.provision :shell do |s| s.path = "vagrant/Install-on-Ubuntu-24.sh" s.privileged = false