Skip to content
Snippets Groups Projects

Add : CI/CD pipeline for latex

Merged George, Lisabeth requested to merge lisabeth.george-master-patch-74820 into master
1 file
+ 11
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 11
0
compile_pdf:
stage: build
image: registry.gitlab.com/islandoftex/images/texlive:latest # Docker image for LaTeX from https://hub.docker.com/
script:
- lualatex main.tex # building the pdf
- biber main
- lualatex main.tex
after_script: cat main.log
artifacts:
paths:
- main.pdf # instructing GitLab to keep the main.pdf file
Loading