1
0
Fork 0

Try to fix pipline

This commit is contained in:
Ethanell 2020-02-04 10:10:27 +01:00
parent c572c453ab
commit a74df5c46c

View file

@ -1,12 +1,16 @@
image: "debian:buster-slim"
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
export_pdf:
build-pdf:
stage: pdf
script:
- for i in `ls *.tex`; do pdflatex --interaction=nonstopmode $i; done
- "for i in `ls *.tex`; do pdflatex --interaction=nonstopmode $i; done"
artifacts:
paths:
- *.pdf
- "*.pdf"