summaryrefslogtreecommitdiff
path: root/doc/install/installation.md
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2017-06-03 07:17:40 +0000
committerAchilleas Pipinellis <axilleas@axilleas.me>2017-06-03 07:17:40 +0000
commit3ad3f906d97c0cb2e3d91f04e8dd100937421420 (patch)
treeeced1e9915a879f4b5b7f7cd1a9d960b3dfa6d80 /doc/install/installation.md
parent70b927a55ca62f1219464182660877bcdefd55b0 (diff)
parent10cf23229f02e005d554f3bb5606a10851c80350 (diff)
downloadgitlab-ce-3ad3f906d97c0cb2e3d91f04e8dd100937421420.tar.gz
Merge branch '31943-document-go-18' into 'master'
Document go1.8.3 as dependency See merge request !11245
Diffstat (limited to 'doc/install/installation.md')
-rw-r--r--doc/install/installation.md15
1 files changed, 7 insertions, 8 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md
index c911b297f8d..84af6432889 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -143,20 +143,19 @@ Then install the Bundler Gem:
## 3. Go
-Since GitLab 8.0, Git HTTP requests are handled by gitlab-workhorse (formerly
-gitlab-git-http-server). This is a small daemon written in Go. To install
-gitlab-workhorse we need a Go compiler. The instructions below assume you
-use 64-bit Linux. You can find downloads for other platforms at the [Go download
+Since GitLab 8.0, GitLab has several daemons written in Go. To install
+GitLab we need a Go compiler. The instructions below assume you use 64-bit
+Linux. You can find downloads for other platforms at the [Go download
page](https://golang.org/dl).
# Remove former Go installation folder
sudo rm -rf /usr/local/go
- curl --remote-name --progress https://storage.googleapis.com/golang/go1.5.3.linux-amd64.tar.gz
- echo '43afe0c5017e502630b1aea4d44b8a7f059bf60d7f29dfd58db454d4e4e0ae53 go1.5.3.linux-amd64.tar.gz' | shasum -a256 -c - && \
- sudo tar -C /usr/local -xzf go1.5.3.linux-amd64.tar.gz
+ curl --remote-name --progress https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz
+ echo '1862f4c3d3907e59b04a757cfda0ea7aa9ef39274af99a784f5be843c80c6772 go1.8.3.linux-amd64.tar.gz' | shasum -a256 -c - && \
+ sudo tar -C /usr/local -xzf go1.8.3.linux-amd64.tar.gz
sudo ln -sf /usr/local/go/bin/{go,godoc,gofmt} /usr/local/bin/
- rm go1.5.3.linux-amd64.tar.gz
+ rm go1.8.3.linux-amd64.tar.gz
## 4. Node