diff --git a/vm_test/Vagrantfile b/vm_test/Vagrantfile index 30bd15c..e67f3c7 100644 --- a/vm_test/Vagrantfile +++ b/vm_test/Vagrantfile @@ -14,6 +14,11 @@ Vagrant.configure("2") do |config| vb.customize ["modifyvm", :id, "--vram", "256"] end + config.vm.provider "hyperv" do |hv| + hv.memory = "8192" + hv.cpus = 6 + end + # Provisioning script to install prerequisites config.vm.provision "shell", privileged: true, powershell_args: "-ExecutionPolicy Bypass", inline: <<-SHELL $winget_ids = @( diff --git a/vm_test/justfile b/vm_test/justfile index 883bd41..e876558 100644 --- a/vm_test/justfile +++ b/vm_test/justfile @@ -13,6 +13,10 @@ choose: up: vagrant up +# Up the vagrant box +up-hyperv: + vagrant up --provider=hyperv + # Reload the vagrant box and provision it reload: vagrant reload --provision