1
0
Fork 0
mirror of synced 2024-07-26 18:11:13 -04:00

Update the Vagrantfile target OS to Ubuntu jammy

This resolves VirtualBox 5.x/6.x Guest Additions incompatibilities
that cause all of the unit tests to fail under VirtualBox 6.1.

Fixes #305
This commit is contained in:
Kurt McKee 2022-04-10 22:24:19 -05:00
parent 769767c129
commit 57c7c513b9

2
test/Vagrantfile vendored
View file

@ -1,5 +1,5 @@
Vagrant.configure(2) do |config|
config.vm.box = 'ubuntu/bionic64'
config.vm.box = 'ubuntu/jammy64'
config.vm.synced_folder "..", "/dotbot", mount_options: ["ro"]