2024-03-31 10:02:00 -05:00
|
|
|
.golang-build:
|
2023-07-23 18:18:29 +00:00
|
|
|
variables:
|
2023-11-25 06:50:40 -06:00
|
|
|
#GOPROXY: https://nexus.durp.info/repository/go/
|
2026-02-27 11:39:38 +00:00
|
|
|
image: registry.durp.info/golang:${GO_VERSION}
|
2023-05-21 08:41:53 -05:00
|
|
|
script:
|
2024-03-31 10:02:00 -05:00
|
|
|
- ./scripts/golang-build.sh
|
2023-05-21 08:41:53 -05:00
|
|
|
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 06:47:07 -06:00
|
|
|
CGO_ENABLED: 0
|
2026-02-27 11:39:38 +00:00
|
|
|
image: registry.durp.info/golangci/golangci-lint:${GOLANGCI_LINT_VERISON}
|
2023-05-21 11:23:03 -05:00
|
|
|
script:
|
2023-11-25 06:32:10 -06:00
|
|
|
- ./scripts/golang-lint.sh
|