-
Notifications
You must be signed in to change notification settings - Fork 33
/
.gitlab-ci.template.yml
70 lines (70 loc) · 1.74 KB
/
.gitlab-ci.template.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
variables:
GO_VERSION: "from_go_mod_file"
stages:
- diff
- lint
- test
diff:
stage: diff
image:
name: $CI_REGISTRY_GO/golang:$GO_VERSION
entrypoint: [""]
tags:
- go
script:
- make generate
- git diff
- test -z "$(git diff 2> /dev/null)" || exit 'Files are not generated or formatted with gofumpt, issue `make generate` and commit the result'
- test -z "$(git ls-files --others --exclude-standard 2> /dev/null)" || exit 'Generation created untracked files, cannot proceed'
rules:
- if: '$CI_PIPELINE_SOURCE == "parent_pipeline"'
lint:
stage: lint
image:
name: $CI_REGISTRY_GO/golang:$GO_VERSION
entrypoint: [""]
tags:
- go
script:
- make lint
rules:
- if: '$CI_PIPELINE_SOURCE == "parent_pipeline"'
license-check:
stage: lint
image:
name: $CI_REGISTRY_GO/golang:$GO_VERSION
entrypoint: [""]
tags:
- go
script:
- go install github.com/google/go-licenses@latest
- PROJECT="$(go list -m)"
- ALLOWED_LICENSES="$(<.allowed_license_types)"
- go-licenses report --ignore "$PROJECT" .
- go-licenses check --allowed_licenses="$ALLOWED_LICENSES" --ignore "$PROJECT" .
rules:
- if: '$CI_PIPELINE_SOURCE == "parent_pipeline"'
tidy:
stage: lint
image:
name: $CI_REGISTRY_GO/golang:$GO_VERSION
entrypoint: [""]
tags:
- go
script:
- go mod tidy
- test -z "$(git diff 2> /dev/null)" || exit 'Go modules not tidied, issue \`go mod tidy\` and commit the result'
rules:
- if: '$CI_PIPELINE_SOURCE == "parent_pipeline"'
test:
stage: test
image:
name: $CI_REGISTRY_GO/golang:$GO_VERSION
entrypoint: [""]
tags:
- go
script:
- go build -v .
- make test
rules:
- if: '$CI_PIPELINE_SOURCE == "parent_pipeline"'