Skip to content
Snippets Groups Projects
Commit 1f0bec49 authored by Stefan Hynek's avatar Stefan Hynek :drooling_face:
Browse files

Merge branch '110-rework-create-ci-jobs' into 'main'

Resolve "rework "create" ci jobs"

Closes #110

See merge request !84

(cherry picked from commit deb86d05)

084f2b86 ci(gitlab): use pandoc image directly instead of `docker run`
82b72738 ci(gitlab): add missing koma-script package to "create" jobs
parent a4dfa1f7
No related branches found
No related tags found
2 merge requests!85Merge branch '110-rework-create-ci-jobs' into 'main',!82Resolve "Add documentation about Dependency Track / CyclonDX / SBOM"
Pipeline #317940 passed with warnings
......@@ -32,13 +32,13 @@ tests:
create_pdf:
stage: compile
services:
- docker:19.03-dind
image: docker:19.03
image:
name: pandoc/latex:2.19
entrypoint: [""]
before_script:
- docker run --rm pandoc/latex:2.9.1.1 pandoc --version
- tlmgr install koma-script
script:
- docker run --rm -v $(pwd):/data pandoc/latex:2.9.1.1 pandoc technical-reference.md -o technical-reference.pdf --template=rdd.latex --shift-heading-level-by=-1
- pandoc technical-reference.md -o technical-reference.pdf --template=rdd.latex --shift-heading-level-by=-1
artifacts:
expose_as: 'draft pdf'
paths:
......@@ -46,13 +46,13 @@ create_pdf:
create_epub:
stage: compile
services:
- docker:19.03-dind
image: docker:19.03
image:
name: pandoc/latex:2.19
entrypoint: [""]
before_script:
- docker run --rm pandoc/latex:2.9.1.1 pandoc --version
- tlmgr install koma-script
script:
- docker run --rm -v $(pwd):/data pandoc/latex:2.9.1.1 pandoc technical-reference.md -o technical-reference.epub --shift-heading-level-by=-1
- pandoc technical-reference.md -o technical-reference.epub --shift-heading-level-by=-1
artifacts:
expose_as: 'draft epub'
paths:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment