Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
3ab1fb02
Commit
3ab1fb02
authored
Jan 24, 2016
by
Prasanna Pendse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Vagrantfile so that developers can spin up a VM to build geth
parent
4f28c5b6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
.gitignore
.gitignore
+2
-0
Vagrantfile
containers/vagrant/Vagrantfile
+29
-0
No files found.
.gitignore
View file @
3ab1fb02
...
...
@@ -35,3 +35,5 @@ cmd/mist/assets/ext/ethereum.js/
profile.tmp
profile.cov
# vagrant
.vagrant
containers/vagrant/Vagrantfile
0 → 100644
View file @
3ab1fb02
# -*- 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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment