24 lines
1.0 KiB
YAML
24 lines
1.0 KiB
YAML
.golang-build:
|
|
variables:
|
|
#GOPROXY: https://nexus.durp.info/repository/go/
|
|
image: registry.internal.durp.info/golang:${GO_VERSION}
|
|
script:
|
|
# Begin of golang-build.sh
|
|
- "#Build golang project\nexport GOPATH=/go\nexport PATH=$PATH:$GOPATH/bin\nmkdir output\n#go install \ngo mod download\n# Check if go.mod contains \"swag\"\nif grep -q \"swag\" go.mod; then\n echo \"Found 'swag' in go.mod. Running swag init...\"\n go install github.com/swaggo/swag/cmd/swag@latest\n swag init --parseDependency\nfi\nCGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o ./output/main .\n"
|
|
# End of golang-build.sh
|
|
artifacts:
|
|
expire_in: 1 hour
|
|
paths:
|
|
- $CI_PROJECT_DIR/output
|
|
.golang-lint:
|
|
variables:
|
|
#GOPROXY: https://nexus.durp.info/repository/go/
|
|
CGO_ENABLED: 0
|
|
image: registry.internal.durp.info/golangci/golangci-lint:${GOLANGCI_LINT_VERISON}
|
|
script:
|
|
# Begin of golang-lint.sh
|
|
- |
|
|
#run linter
|
|
golangci-lint run ./... --timeout 5m0s
|
|
# End of golang-lint.sh
|