Added Vagrantfile so that developers can spin up a VM to build geth
This commit is contained in:
parent
4f28c5b69d
commit
3ab1fb0215
2
.gitignore
vendored
2
.gitignore
vendored
@ -35,3 +35,5 @@ cmd/mist/assets/ext/ethereum.js/
|
|||||||
profile.tmp
|
profile.tmp
|
||||||
profile.cov
|
profile.cov
|
||||||
|
|
||||||
|
# vagrant
|
||||||
|
.vagrant
|
||||||
|
29
containers/vagrant/Vagrantfile
vendored
Normal file
29
containers/vagrant/Vagrantfile
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# -*- mode: ruby -*-
|
||||||
|
# vi: set ft=ruby :
|
||||||
|
|
||||||
|
Vagrant.configure(2) do |config|
|
||||||
|
config.vm.box = "ubuntu/trusty64"
|
||||||
|
|
||||||
|
config.vm.provider "virtualbox" do |vb|
|
||||||
|
vb.memory = "2048"
|
||||||
|
end
|
||||||
|
|
||||||
|
config.vm.synced_folder "../../", "/home/vagrant/go/src/github.com/ethereum/go-ethereum"
|
||||||
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
||||||
|
|
||||||
|
config.vm.provision "shell", inline: <<-SHELL
|
||||||
|
sudo apt-get install software-properties-common
|
||||||
|
sudo add-apt-repository -y ppa:ethereum/ethereum
|
||||||
|
sudo add-apt-repository -y ppa:ethereum/ethereum-dev
|
||||||
|
sudo apt-get update
|
||||||
|
|
||||||
|
sudo apt-get install -y build-essential golang git-all
|
||||||
|
|
||||||
|
GOPATH=/home/vagrant/go go get github.com/tools/godep
|
||||||
|
|
||||||
|
sudo chown -R vagrant:vagrant ~vagrant/go
|
||||||
|
|
||||||
|
echo "export GOPATH=/home/vagrant/go" >> ~vagrant/.bashrc
|
||||||
|
echo "export PATH=\\\$PATH:\\\$GOPATH/bin:/usr/local/go/bin" >> ~vagrant/.bashrc
|
||||||
|
SHELL
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user