ci-includes-yml/templates/golang.tpl.yml

20 lines
498 B
YAML
Raw Normal View History

2023-05-21 08:41:53 -05:00
.golang-build-api:
2023-07-23 18:18:29 +00:00
variables:
2023-11-25 06:50:40 -06:00
#GOPROXY: https://nexus.durp.info/repository/go/
2023-05-21 08:41:53 -05:00
image: registry.durp.info/golang:1.20
script:
- ./scripts/golang-build-api.sh
artifacts:
expire_in: 1 hour
paths:
2023-05-21 11:23:03 -05:00
- $CI_PROJECT_DIR/output
.golang-lint:
2023-07-23 18:24:05 +00:00
variables:
2023-11-25 06:50:40 -06:00
#GOPROXY: https://nexus.durp.info/repository/go/
2023-11-25 07:43:37 -06:00
GOLANGCI-LING-VERISON: v1.55.2
2023-11-25 06:47:07 -06:00
CGO_ENABLED: 0
2023-11-25 07:43:37 -06:00
image: registry.durp.info/golangci/golangci-lint:$GOLANGCI-LING-VERISON
2023-05-21 11:23:03 -05:00
script:
2023-11-25 06:32:10 -06:00
- ./scripts/golang-lint.sh