mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-02-16 19:15:30 +00:00
CI: Build docs and deploy them with gitlab pages
This commit is contained in:
parent
466e0901bb
commit
cc0775388f
1 changed files with 16 additions and 0 deletions
|
@ -311,3 +311,19 @@ outdated:
|
||||||
- schedules
|
- schedules
|
||||||
script:
|
script:
|
||||||
- cargo outdated --root-deps-only --exit-code 1 -v
|
- cargo outdated --root-deps-only --exit-code 1 -v
|
||||||
|
|
||||||
|
pages:
|
||||||
|
extends: .img-stable
|
||||||
|
stage: 'deploy'
|
||||||
|
script:
|
||||||
|
- |
|
||||||
|
for crate in gstreamer*; do
|
||||||
|
cd $crate
|
||||||
|
cargo doc --features --features=dox,embed-lgpl-docs
|
||||||
|
cd ..
|
||||||
|
done
|
||||||
|
- mv target/doc public/
|
||||||
|
when: 'manual'
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- 'public'
|
||||||
|
|
Loading…
Reference in a new issue