blob: 9c7cbb766ae9c4c4b4e3fcc4d177f519bc869ff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
---
include:
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
variables:
RELEASE: 'bullseye'
SALSA_CI_DISABLE_REPROTEST: 1
# Add a deploy stage for pages
stages:
- provisioning
- build
- publish
- test
# would be better if we could extend the list rather than override it
- deploy
pages:
image: debian:10
script:
- apt update
- apt -y install pandoc
- mkdir public
# install CSS file
- cp debian/doc/pandoc/pandoc.css public/
# install index.html
- ${PANDOC} -T "Debian Cryptsetup docs" -o public/index.html
debian/doc/pandoc/index.md
# install README.*.html files
- for readme in Debian debug gnupg gnupg-sc initramfs keyctl opensc; do
${PANDOC} --toc -T "Debian Cryptsetup docs"
-o public/README.$readme.html debian/README.$readme; done
- ${PANDOC} -pNo public/encrypted-boot.html
debian/doc/pandoc/encrypted-boot.md
stage: deploy
artifacts:
paths:
- public
only:
# only run on debian/latest branch
refs:
- debian/latest
# only run when commit is tagged (to install docs on package releases only)
#variables:
# - $CI_COMMIT_TAG
variables:
PANDOC: 'pandoc -s -c pandoc.css -f markdown+smart -t html'
|