Removing gitlab workflow

This commit is contained in:
KD
2025-03-08 19:10:12 -05:00
parent 5ad2324250
commit 7d6c8fcf33

View File

@@ -1,26 +0,0 @@
image: golang:1.24
stages:
- test
- build
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/)
gofmt -l -d *.go
compile:
stage: build
before_script:
- git config --global url.https://gitlab-ci-token:${CI_JOB_TOKEN}@${CI_SERVER_HOST}.insteadOf https://${CI_SERVER_HOST}
- export GOPRIVATE=${CI_SERVER_HOST}
script:
- mkdir -p mybinaries
- go build -o mybinaries ./...
artifacts:
paths:
- mybinaries