From a93c2e4b72c02737441e477ba231151e54ce3589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Wed, 27 Jun 2018 01:22:34 +0200 Subject: [PATCH] Try to get VirtualBox to run on Travis --- test/virtualbox.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/virtualbox.sh b/test/virtualbox.sh index b996609..dc8b51e 100755 --- a/test/virtualbox.sh +++ b/test/virtualbox.sh @@ -8,6 +8,9 @@ vmname="automatic-os-test-$(date +%s)-$$" ln -sf "$(readlink -f "$os_file")" "$img_file" VBoxManage createvm --name "$vmname" --register --basefolder "/tmp/$vbox_dir" +VBoxManage modifyvm "$vmname" --hwvirtex off +VBoxManage modifyvm "$vmname" --nestedpaging off +VBoxManage modifyvm "$vmname" --pae off VBoxManage storagectl "$vmname" --name 'floppy disk drive' --add floppy --bootable on VBoxManage storageattach "$vmname" --storagectl 'floppy disk drive' --port 0 --device 0 --type fdd --medium "$img_file" VBoxManage modifyvm "$vmname" --boot1 floppy