From 78d3a6f7acab406bff526283277691f6cdfcc3e9 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 24 Nov 2020 22:57:29 +1100 Subject: [PATCH] Vagrantfile: add definition for groovy --- Vagrantfile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 6d595374bb..ed45dc9b97 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,7 +5,7 @@ # dpkg -l | grep modemmanager # sim_vehicle.py --map --console # in the starting directory should start a Copter simulation # sim_vehicle.py --debug --gdb -# sim_vehicle.py --valgrind +# sim_vehicle.py --debug --valgrind # time (cd /vagrant && ./waf configure --board=fmuv2 && ./waf build --target=bin/ardusub) # ~9 minutes # time (cd /vagrant && ./waf configure --board=fmuv3 && ./waf build --target=bin/ardusub) # ~ minutes (after building fmuv2) # time (cd /vagrant && ./waf configure --board=navio2 && ./waf build --target=bin/arduplane) @@ -167,5 +167,15 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| focal.vm.boot_timeout = 1200 end + # 20.10 + config.vm.define "groovy", autostart: false do |groovy| + groovy.vm.box = "ubuntu/groovy64" + groovy.vm.provision :shell, path: "Tools/vagrant/initvagrant.sh" + groovy.vm.provider "virtualbox" do |vb| + vb.name = "ArduPilot (groovy)" + end + groovy.vm.boot_timeout = 1200 + end + end