-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
74 lines (66 loc) · 1.79 KB
/
.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
74
# This file is a template, and might need editing before it works on your project.
include:
- project: 'security/security-tools'
ref: 'v2'
file: 'adapter/login/security-tools-login-sdk-go.yml'
image: golang:latest
variables:
REPO_NAME: github.com/xsolla/login-sdk-go
GIT_SSL_NO_VERIFY: "true"
# 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 model
# 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:
- lint
- test
- build
- security scan
- release
format:
stage: test
script:
- go fmt $(go list ./... | grep -v /vendor/)
- go vet $(go list ./... | grep -v /vendor/)
- go test -race $(go list ./... | grep -v /vendor/)
lint:
image: golangci/golangci-lint:v1.52.2
stage: lint
script:
- golangci-lint run -v
compile:
stage: build
script:
- go build -race -ldflags "-extldflags '-static'" -o $CI_PROJECT_DIR/mybinary
artifacts:
paths:
- mybinary
release:
image: node:18-buster-slim
stage: release
cache:
key:
files:
- package-lock.json
paths:
- node_modules/
variables:
GITLAB_TOKEN: $GITLAB_TOKEN
NODE_TLS_REJECT_UNAUTHORIZED: 0
before_script:
- apt-get update && apt-get install -y --no-install-recommends git-core ca-certificates
script:
- npm ci && npm run semantic-release
only:
refs:
- master
- beta
- alpha
variables:
- $CI_COMMIT_MESSAGE !~ /skip release/