You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pastebucket/.gitlab-ci.yml

44 lines
648 B

5 years ago
image: rascul3/rust:latest
build:
stage: build
script:
- cargo build
5 years ago
doc:
stage: build
script:
- cargo doc
- mv target/doc public
artifacts:
paths:
- public
5 years ago
5 years ago
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.js | grep "[0-9]*\.[0-9]" -o)
5 years ago
- echo "Coverage:" $COVERAGE
- mv target/cov public/
artifacts:
paths:
- public
pages:
stage: deploy
script:
- mv readme.html public/index.html
5 years ago
artifacts:
paths:
- public
only:
- master