Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save binarytemple-external/1ec17c4088bed8d2324eaddc06f8edb5 to your computer and use it in GitHub Desktop.
Save binarytemple-external/1ec17c4088bed8d2324eaddc06f8edb5 to your computer and use it in GitHub Desktop.
Building/running drone.io on Centos 7
cd /tmp
wget https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz
tar -C /usr/local -xzf /tmp/go1.8.1.linux-amd64.tar.gz
yum install glibc-static
export PATH=$PATH:$GOPATH/bin
export GO15VENDOREXPERIMENT=1
go get -u github.com/jteeuwen/go-bindata/...
git clone git://github.com/drone/drone.git $GOPATH/src/github.com/drone/drone
cd $GOPATH/src/github.com/drone/drone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment