gogitlabber/.gitlab-ci.yml
2025-03-06 10:28:18 +01:00

31 lines
608 B
YAML

image: "golang:alpine"
stages:
- "linter"
- "testing"
- "build"
linter:
stage: "linter"
image: "golangci/golangci-lint:latest-alpine"
script:
- "golangci-lint run"
testing:
stage: "testing"
needs:
- "linter"
image: "cr.simoncor.net/siempie/go-build:latest"
script:
- "go test cmd/gogitlabber/*"
build:
stage: "build"
needs:
- "testing"
image: "cr.simoncor.net/siempie/go-build:latest"
script:
- "GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o gogitlabber cmd/gogitlabber/*.go"
artifacts:
name: "${CI_PROJECT_NAME}"
paths:
- "gogitlabber"