pominal/.gitlab-ci.yml

36 lines
517 B
YAML
Raw Normal View History

2019-06-30 01:25:36 +01:00
---
stages:
- test
- deploy
variables:
CGO_ENABLED: 0
2019-06-30 01:25:36 +01:00
test:unit:
artifacts:
expire_in: 30 minutes
paths:
- code-coverage.html
before_script:
- apk add --no-cache make
image: golang:1.13.6-alpine
2019-06-30 01:25:36 +01:00
script:
- make test_cover_report
stage: test
2019-06-30 01:25:36 +01:00
pages:
artifacts:
paths:
- public
expire_in: 30 days
dependencies:
- test:unit
only:
2020-01-18 01:55:28 +00:00
- master@dananglin/Pominal
script:
- mkdir public
- mv code-coverage.html public
stage: deploy
variables:
GIT_STRATEGY: none