2021-10-18 18:22:00 -06:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- push
|
|
|
|
|
|
|
|
test:
|
2021-10-18 18:59:15 -06:00
|
|
|
stage: test
|
2022-05-10 19:21:25 -06:00
|
|
|
|
2022-05-10 19:11:47 -06:00
|
|
|
image: golang:1.18
|
2021-10-18 18:22:00 -06:00
|
|
|
only:
|
|
|
|
refs:
|
|
|
|
- main
|
|
|
|
- merge_requests
|
|
|
|
script:
|
2022-10-21 15:52:26 -06:00
|
|
|
- go test -coverprofile=coverage.txt -covermode=atomic -race ./...
|
|
|
|
- go get github.com/boumenot/gocover-cobertura
|
|
|
|
- go run github.com/boumenot/gocover-cobertura < coverage.txt > coverage.xml
|
2022-10-25 14:37:56 -06:00
|
|
|
- go tool cover -func coverage.txt
|
|
|
|
coverage: /\(statements\)(?:\s+)?(\d+(?:\.\d+)?%)/
|
2022-10-21 15:52:26 -06:00
|
|
|
artifacts:
|
|
|
|
reports:
|
|
|
|
coverage_report:
|
|
|
|
coverage_format: cobertura
|
|
|
|
path: coverage.xml
|
2021-10-18 18:22:00 -06:00
|
|
|
push:
|
|
|
|
stage: push
|
|
|
|
rules:
|
|
|
|
- if: $CI_COMMIT_TAG
|
|
|
|
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
|
|
|
script:
|
2021-10-19 17:24:08 -06:00
|
|
|
- mkdir ~/.docker
|
2021-10-20 14:27:32 -06:00
|
|
|
- echo "$DOCKER_AUTH_CONFIG" | tee ~/.docker/config.json | md5sum
|
2021-10-19 18:49:46 -06:00
|
|
|
- sh build/ci/ci.sh publish
|