Commit 531b1054 authored by Matija Čupić's avatar Matija Čupić

Merge branch 'mk-fix-golang-ci-template' into 'master'

Do not use GOPATH in default CI template

See merge request gitlab-org/gitlab!84365
parents bc7efd60 ad6a72e6
......@@ -5,21 +5,6 @@
image: golang:latest
variables:
# Please edit to your GitLab project
REPO_NAME: gitlab.com/namespace/project
# The problem is that to be able to use go get, one needs to put
# the repository in the $GOPATH. So for example if your gitlab domain
# is gitlab.com, and that your repository is namespace/project, and
# the default GOPATH being /go, then you'd need to have your
# repository in /go/src/gitlab.com/namespace/project
# Thus, making a symbolic link corrects this.
before_script:
- mkdir -p "$GOPATH/src/$(dirname $REPO_NAME)"
- ln -svf "$CI_PROJECT_DIR" "$GOPATH/src/$REPO_NAME"
- cd "$GOPATH/src/$REPO_NAME"
stages:
- test
- build
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment