1
0
Fork 0

Some hide stuff

This commit is contained in:
Ethanell 2020-02-04 09:46:04 +01:00
parent fd2fa0a6fc
commit c572c453ab
2 changed files with 20 additions and 0 deletions

8
.gitignore vendored Normal file
View file

@ -0,0 +1,8 @@
# Latex build files
*.toc
*.aux
*.log
*.snm
*.nav
*.out
*.pdf

12
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,12 @@
image: "debian:buster-slim"
before_script:
- apt update && apt upgrade -y && apt install texlive-latex-base texlive-latex-extra texlive-lang-french -y
export_pdf:
script:
- for i in `ls *.tex`; do pdflatex --interaction=nonstopmode $i; done
artifacts:
paths:
- *.pdf