-
Notifications
You must be signed in to change notification settings - Fork 48
/
Vagrantfile
71 lines (56 loc) · 1.86 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- mode: ruby -*-
# vi: set ft=ruby :
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
# Place this Vagrantfile in your src folder and run:
#
# vagrant up
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Vagrantfile API/syntax version.
VAGRANTFILE_API_VERSION = "2"
GO_ARCHIVES = {
"linux" => "go1.2.linux-amd64.tar.gz",
}
INSTALL = {
"linux" => "apt-get update -qq; apt-get install -qq -y git mercurial bzr curl",
}
# location of the Vagrantfile
def src_path
ENV["GOPATH"]
end
# shell script to bootstrap Go
def bootstrap(box)
install = INSTALL[box]
archive = GO_ARCHIVES[box]
vagrant_home = "/home/vagrant"
profile = <<-PROFILE
export GOROOT=#{vagrant_home}/go
export GOPATH=#{vagrant_home}/gocode
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
export CDPATH=.:$GOPATH/src/github.com:$GOPATH/src/code.google.com/p:$GOPATH/src/bitbucket.org:$GOPATH/src/launchpad.net
PROFILE
<<-SCRIPT
#{install}
if ! [ -f /home/vagrant/#{archive} ]; then
curl -O# https://go.googlecode.com/files/#{archive}
fi
tar -C /home/vagrant -xzf #{archive}
chown -R vagrant:vagrant #{vagrant_home}/go
if ! grep -q GOPATH #{vagrant_home}/.profile; then
echo '#{profile}' >> #{vagrant_home}/.profile
fi
source #{vagrant_home}/.profile
chown -R vagrant:vagrant #{vagrant_home}/gocode
go get github.com/jingweno/gotask
echo "\nRun: vagrant ssh #{box} -c 'cd project/path; go test ./...'"
SCRIPT
end
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "linux" do |linux|
linux.vm.box = "precise64"
linux.vm.box_url = "http://files.vagrantup.com/precise64.box"
linux.vm.synced_folder "#{src_path}/src/github.com/jingweno/gh", "/home/vagrant/gocode/src/github.com/jingweno/gh"
linux.vm.provision :shell, :inline => bootstrap("linux")
end
end