Skip to content

Commit

Permalink
[test] add fix for rare virtualbox error (#31212)
Browse files Browse the repository at this point in the history
See the vagrant issue mentioned in this commit for details. This error
has happened a couple times in packaging test CI builds with workers
using virtualbox 5.2.10r122088
  • Loading branch information
andyb-elastic authored and jasontedor committed Jun 11, 2018
1 parent d64476d commit f147638
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,9 @@ def provision(config,
# Give the box more memory and cpu because our tests are beasts!
v.memory = Integer(ENV['VAGRANT_MEMORY'] || 8192)
v.cpus = Integer(ENV['VAGRANT_CPUS'] || 4)

# see https://github.com/hashicorp/vagrant/issues/9524
vbox.customize ["modifyvm", :id, "--audio", "none"]
end
config.vm.provision "dependencies", type: "shell", inline: <<-SHELL
set -e
Expand Down

0 comments on commit f147638

Please sign in to comment.