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 16:02:01 +01:00

16 lines
354 B
YAML

image: flifloo/latex
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 -synctex=1 -interaction=nonstopmode \"$i\"; done"
artifacts:
paths:
- "*.pdf"