debian-mirror-gitlab/lib/gitlab/ci/templates/LaTeX.gitlab-ci.yml

21 lines
535 B
YAML
Raw Normal View History

2021-04-17 20:07:23 +05:30
---
variables:
# Feel free to choose the image that suits you best.
# blang/latex:latest ... Former image used in this template. No longer maintained by author.
# listx/texlive:2020 ... The default, referring to TexLive 2020. Current at least to 2021-02-02.
# Additional alternatives with high Docker pull counts:
# thomasweise/docker-texlive-full
# thomasweise/texlive
# adnrv/texlive
LATEX_IMAGE: listx/texlive:2020
2016-09-13 17:45:13 +05:30
build:
2021-04-17 20:07:23 +05:30
image: $LATEX_IMAGE
2016-09-13 17:45:13 +05:30
script:
- latexmk -pdf
2021-04-17 20:07:23 +05:30
2016-09-13 17:45:13 +05:30
artifacts:
paths:
- "*.pdf"