Last active
February 7, 2018 23:16
-
-
Save zramsay/73f43a0800a461af3e74ccefd8004748 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# XXX: this script is meant to be used only on a fresh Ubuntu 16.04 instance | |
# and has only been tested on Digital Ocean | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
# get and unpack golang | |
curl -O https://storage.googleapis.com/golang/go1.9.2.linux-amd64.tar.gz | |
tar -xvf go1.9.2.linux-amd64.tar.gz | |
apt-get install make | |
apt-get install gcc | |
## move go and add binary to path | |
mv go /usr/local | |
echo "export PATH=\$PATH:/usr/local/go/bin" >> ~/.profile | |
## create the GOPATH directory, set GOPATH and put on PATH | |
mkdir goApps | |
echo "export GOPATH=/root/goApps" >> ~/.profile | |
echo "export PATH=\$PATH:\$GOPATH/bin" >> ~/.profile | |
source ~/.profile | |
## get the code and move into it | |
REPO=github.com/tendermint/ethermint | |
go get $REPO | |
cd $GOPATH/src/$REPO | |
## build | |
make get_vendor_deps | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment