Some hide stuff
This commit is contained in:
parent
fd2fa0a6fc
commit
c572c453ab
2 changed files with 20 additions and 0 deletions
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Latex build files
|
||||
*.toc
|
||||
*.aux
|
||||
*.log
|
||||
*.snm
|
||||
*.nav
|
||||
*.out
|
||||
*.pdf
|
12
.gitlab-ci.yml
Normal file
12
.gitlab-ci.yml
Normal 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
|
||||
|
Reference in a new issue