1
0
Fork 0
mirror of https://gitlab.com/msrd0/gotham-restful.git synced 2025-02-22 20:52:27 +00:00

deploy documentation as gitlab pages

This commit is contained in:
Dominic 2020-05-06 15:58:11 +02:00
parent b1801f2486
commit e470f060e3
Signed by: msrd0
GPG key ID: DCC8C247452E98F9

View file

@ -1,6 +1,7 @@
stages:
- test
- build
- publish
variables:
@ -43,6 +44,36 @@ readme:
- cargo readme -t README.tpl >README.md.new
- diff README.md README.md.new
doc:
stage: build
image: msrd0/rust:alpine
before_script:
- cargo -V
script:
- cargo doc --all-features
- echo '<!DOCTYPE HTML><html><head><meta http-equiv="Refresh" content="0; url=./gotham_restful/index.html"/></head><body>The documentation is located <a href="./gotham_restful/index.html">here</a></body></html>' >target/doc/index.html
artifacts:
paths:
- target/doc/
cache:
paths:
- cargo/
- target/
only:
- master
pages:
stage: publish
image: busybox
script:
- mv target/doc public
- mv tarpaulin-report.html public/coverage.html
artifacts:
paths:
- public
only:
- master
publish:
stage: publish
image: msrd0/rust:alpine