Last active
December 6, 2022 11:20
-
-
Save jcloutz/a9831d60aefb5e6ca29fd7848a230467 to your computer and use it in GitHub Desktop.
Example Gitlab CI setup for Go using the official golang docker image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: golang:1.7 | |
stages: | |
- build | |
- test | |
before_script: | |
- go get github.com/tools/godep | |
- cp -r /builds/user /go/src/github.com/user/ | |
- cd /go/src/github.com/user/repo | |
build-my-project: | |
stage: build | |
script: | |
- godep restore | |
- godep go build | |
test-my-project: | |
stage: test | |
script: | |
- godep restore | |
- godep go test -v -cover ./... |
A better solution is to use a soft link:
- ln -s /builds /go/src/gitlab.com
You should indeed use symlinks instead of cp
, else artifacts
and cache
are more difficult to use reliable.
Additionally:
- cd /go/src/gitlab.com/${CI_PROJECT_PATH}
Makes it easier to reuse and it still works after moving a project.
Don't use symlinks. Various tools like go test
, etc. ignore symlinks
anyone has deployment job example?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you use the Alpine image then also you need to install git (required by
go get
):