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: before_script:
- apt update && apt upgrade -y && apt install texlive-latex-base texlive-latex-extra texlive-lang-french -y - apt update && apt upgrade -y && apt install texlive-latex-base texlive-latex-extra texlive-lang-french -y
export_pdf: build-pdf:
stage: pdf
script: script:
- for i in `ls *.tex`; do pdflatex --interaction=nonstopmode $i; done - "for i in `ls *.tex`; do pdflatex --interaction=nonstopmode $i; done"
artifacts: artifacts:
paths: paths:
- *.pdf - "*.pdf"