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

14 lines
253 B
YAML
Raw Normal View History

2020-02-04 15:25:41 +01:00
image: flifloo/latex
2020-02-04 10:10:27 +01:00
stages:
- pdf
2020-02-04 09:46:04 +01:00
2020-02-04 10:10:27 +01:00
build-pdf:
stage: pdf
2020-02-04 09:46:04 +01:00
script:
2020-02-04 17:24:06 +01:00
- "for dummy in 1 2; do for i in `ls *.tex`; do pdflatex -synctex=1 -interaction=nonstopmode \"$i\"; done; 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