Skip to content

Commit c82ce58

Browse files
committed
add linux build script
1 parent fc706fb commit c82ce58

File tree

3 files changed

+474
-0
lines changed

3 files changed

+474
-0
lines changed

linux/Vagrantfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
VAGRANTFILE_API_VERSION = "2"
5+
6+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
7+
config.vm.box = "hashicorp/precise64"
8+
config.ssh.forward_agent = TRUE
9+
10+
config.vm.provider "virtualbox" do |vb|
11+
vb.memory = 4096
12+
vb.cpus = 2
13+
end
14+
15+
config.vm.network "private_network", ip: "192.168.50.4"
16+
config.vm.synced_folder ".", "/vagrant", type: :nfs
17+
18+
config.vm.provision "shell", path: "provision.sh"
19+
end

0 commit comments

Comments
 (0)