Skip to content

Instantly share code, notes, and snippets.

@rastasheep
Created August 22, 2013 13:27
Show Gist options
  • Save rastasheep/6307141 to your computer and use it in GitHub Desktop.
Save rastasheep/6307141 to your computer and use it in GitHub Desktop.
Install go on Semaphore
# Folder for go instalation
mkdir $MYHOME/go
sudo apt-get install -y mercurial meld build-essential bison libc6-dev-i386
hg clone -r release https://go.googlecode.com/hg/ $MYHOME/go
export PATH=$MYHOME/go/bin:$PATH
cd $MYHOME/go/src
./all.bash
# Export go exec folder to path
export PATH=$PATH:$MYHOME/go/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment