1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
CI-CD_DevOps_CVDA/.gitlab-ci.yml
2020-02-04 10:10:27 +01:00

16 lines
345 B
YAML

image: debian:buster-slim
stages:
- pdf
before_script:
- apt update && apt upgrade -y && apt install texlive-latex-base texlive-latex-extra texlive-lang-french -y
build-pdf:
stage: pdf
script:
- "for i in `ls *.tex`; do pdflatex --interaction=nonstopmode $i; done"
artifacts:
paths:
- "*.pdf"