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

17 lines
345 B
YAML
Raw Normal View History

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