2021-01-18 16:08:20 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2021-10-13 15:30:34 +00:00
|
|
|
- name: fetch git submodules
|
|
|
|
image: alpine/git
|
|
|
|
commands:
|
|
|
|
- git submodule init
|
|
|
|
- git submodule update --recursive --remote
|
|
|
|
|
2021-01-18 16:08:20 +00:00
|
|
|
- name: check documentation build
|
2021-10-22 16:41:39 +00:00
|
|
|
image: rust:1.49-slim-buster
|
2021-01-18 16:08:20 +00:00
|
|
|
commands:
|
2021-10-22 16:48:02 +00:00
|
|
|
- cargo install mdbook --git https://github.com/Ruin0x11/mdBook.git --branch localization
|
|
|
|
--rev 9d8147c --force --debug
|
2021-10-25 10:46:07 +00:00
|
|
|
- apt-get update
|
2021-10-25 10:53:17 +00:00
|
|
|
- apt-get install curl -y
|
2021-10-25 10:13:19 +00:00
|
|
|
- ./update-includes.sh
|
2021-10-22 16:41:39 +00:00
|
|
|
- mdbook build .
|