parent
711f56308c
commit
099cc54a98
@ -0,0 +1,34 @@
|
|||||||
|
image: rascul3/rust:latest
|
||||||
|
|
||||||
|
build:
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- cargo build
|
||||||
|
|
||||||
|
test:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- cargo test
|
||||||
|
|
||||||
|
cov:
|
||||||
|
stage: test
|
||||||
|
coverage: '/^Coverage+:\s(\d+(?:\.\d+)?)/'
|
||||||
|
script:
|
||||||
|
- cargo build
|
||||||
|
- cargo kcov
|
||||||
|
- COVERAGE=$(grep -Po 'covered":.*?[^\\]"' target/cov/index.json | grep "[0-9]*\.[0-9]" -o)
|
||||||
|
- echo "Coverage:" $COVERAGE
|
||||||
|
- mv target/cov public/
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
|
||||||
|
pages:
|
||||||
|
stage: deploy
|
||||||
|
script:
|
||||||
|
- mv index.html public/
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
only:
|
||||||
|
- master
|
Loading…
Reference in new issue