Try to fix pipline
This commit is contained in:
parent
c572c453ab
commit
a74df5c46c
1 changed files with 8 additions and 4 deletions
|
@ -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"
|
||||||
|
|
||||||
|
|
Reference in a new issue