mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
894 B
30 lines
894 B
9 years ago
|
# -*- 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
|