2013-09-25 13:05:57 -07:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
2013-09-25 13:55:46 -07:00
|
|
|
# We intentionally use the old config format because Mozilla's Jenkins
|
|
|
|
# server doesn't run a modern Vagrant.
|
|
|
|
Vagrant::Config.run do |config|
|
2013-09-25 13:05:57 -07:00
|
|
|
config.vm.box = "precise64"
|
|
|
|
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
|
2013-09-25 13:55:46 -07:00
|
|
|
config.vm.share_folder("gecko", "/gecko", "../..")
|
2013-09-26 09:21:20 -07:00
|
|
|
# Doxygen needs more than the default memory or it will swap and be
|
|
|
|
# extremely slow.
|
2013-09-29 05:14:30 -07:00
|
|
|
config.vm.customize ["modifyvm", :id, "--memory", 2048]
|
2013-09-25 13:05:57 -07:00
|
|
|
end
|