]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge pull request #3466 from mtmail/apple-silicon-parallels
authorSarah Hoffmann <lonvia@denofr.de>
Mon, 29 Jul 2024 14:52:54 +0000 (16:52 +0200)
committerGitHub <noreply@github.com>
Mon, 29 Jul 2024 14:52:54 +0000 (16:52 +0200)
Vagrant: add config for Apple Silicon

Vagrantfile

index 753b1833fa616ca93506411889689f3fa5e6787f..03cd0629ad1ce70da0d3a1eb95a170e65dcd3b0a 100644 (file)
@@ -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
@@ -44,6 +52,10 @@ Vagrant.configure("2") do |config|
 
   config.vm.define "ubuntu22", primary: true do |sub|
       sub.vm.box = "generic/ubuntu2204"
+      if RUBY_PLATFORM.include?('darwin') && RUBY_PLATFORM.include?('arm64')
+        # Apple M processor
+        sub.vm.box = 'luminositylabsllc/ubuntu-22.04-arm64'
+      end
       sub.vm.provision :shell do |s|
         s.path = "vagrant/Install-on-Ubuntu-22.sh"
         s.privileged = false