-
Notifications
You must be signed in to change notification settings - Fork 67
/
Vagrantfile
40 lines (31 loc) · 867 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*- mode: ruby -*-
# vi: set ft=ruby et:
# Customize VM resources
VM_CPUS = "4"
VM_MEMORY = "2048" # MB
VM_NAME = "BustubVM"
Vagrant.configure(2) do |config|
# Pick a box to use
config.vm.box = "ubuntu/focal64"
# Config VM
config.vm.provider :virtualbox do |vb|
vb.customize [ "modifyvm", :id,
"--memory", VM_MEMORY,
"--name", VM_NAME,
"--nicspeed1", 1000000,
"--nicspeed2", 1000000,
"--ioapic", "on",
"--cpus", VM_CPUS ]
end
# SSH
config.ssh.forward_agent = true
config.ssh.forward_x11 = true
# Link current repo into VM
config.vm.synced_folder "..", "/bustub"
# Setup environment
config.vm.provision :shell, :inline => "apt-get update"
config.vm.provision "shell" do |s|
s.path = "https://github.com/cmu-db/bustub/raw/vagrant/build_support/packages.sh"
s.args = "-y"
end
end