Skip to content

Instantly share code, notes, and snippets.

@zramsay
Last active June 22, 2020 08:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zramsay/4bca8907a97ad825c30cfdc6f72ba97b to your computer and use it in GitHub Desktop.
Save zramsay/4bca8907a97ad825c30cfdc6f72ba97b to your computer and use it in GitHub Desktop.
#!/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
# get and unpack golang
curl -O https://storage.googleapis.com/golang/go1.10.linux-amd64.tar.gz
tar -xvf go1.10.linux-amd64.tar.gz
apt install make
## 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/tendermint
go get $REPO
cd $GOPATH/src/$REPO
## build
git checkout master
make get_tools
make get_vendor_deps
make install
@ying2025
Copy link

ying2025 commented Jun 1, 2018

I have encounter the question as following:
ubuntu:/goApps/src/github.com/tendermint/tendermint$ make get_vendor_deps
--> Running dep
dep: WARNING: Unknown field in manifest: prune
zhr@ubuntu:
/goApps/src/github.com/tendermint/tendermint$ dep status
dep: WARNING: Unknown field in manifest: prune
^CSignal received: waiting for 1 ops to complete...
The following errors occurred while deducing packages:

validateParams: could not deduce external imports' project roots
zhr@ubuntu:/goApps/src/github.com/tendermint/tendermint$ make get_vendor_deps
--> Running dep
dep: WARNING: Unknown field in manifest: prune
zhr@ubuntu:
/goApps/src/github.com/tendermint/tendermint$ make install
CGO_ENABLED=0 go install -ldflags "-X github.com/tendermint/tendermint/version.GitCommit=git rev-parse --short=8 HEAD" -tags 'tendermint' ./cmd/tendermint
image

@ying2025
Copy link

ying2025 commented Jun 4, 2018

It has the same question when I run with "make get_vendor_deps"
zhr@ubuntu:~/goApps/src/github.com/tendermint/tendermint$ make get_vendor_deps
--> Running dep
dep: WARNING: Unknown field in manifest: prune

@zevaverbach
Copy link

zevaverbach commented Aug 8, 2019

This needs the following revisions to run on Ubuntu 16.04:

replace line 7 with

curl -O https://storage.googleapis.com/golang/go1.12.7.linux-amd64.tar.gz

and add these lines back to Makefile:

get_vendor_deps:
	@rm -rf vendor/
	@echo "--> Running dep ensure"
	@dep ensure

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment