-
Notifications
You must be signed in to change notification settings - Fork 14
/
.gitlab-ci.yml
73 lines (65 loc) · 976 Bytes
/
.gitlab-ci.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
71
72
73
variables:
DOCKER_IMAGE: '$IMAGE_URL'
image: '$DOCKER_IMAGE'
stages:
- analyze
- lint
- test
- validate
- deploy
- release
analyze:lint:
stage: analyze
image: golangci/golangci-lint:v1.57
script:
- golangci-lint run -v
tags:
- k8s-tbk
lint:golint:
stage: lint
script:
- ci/lint.sh
tags:
- k8s-tbk
lint:vet:
stage: lint
script:
- go vet ./...
tags:
- k8s-tbk
lint:modtidy:
stage: lint
script:
- ci/tidy.sh
tags:
- k8s-tbk
test:go:
stage: test
script:
- go test ./...
tags:
- k8s-tbk
validate:tag-message:
stage: validate
only:
- tags
script:
- ci/validate_tag_message.sh $CI_COMMIT_TAG
tags:
- k8s-tbk
deploy:deploy-to-github:
stage: deploy
only:
- tags
script:
- ci/deploy_to_github.sh
tags:
- k8s-tbk
release:release-to-github:
stage: release
only:
- tags
script:
- ci/release_to_github.sh $CI_COMMIT_TAG
tags:
- k8s-tbk