-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
27 lines (24 loc) · 1.05 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
language: generic
###############################################################################
install:
- travis_retry wget https://github.com/scottkosty/install-tl-ubuntu/raw/master/install-tl-ubuntu
- chmod +x ./install-tl-ubuntu
- sudo ./install-tl-ubuntu
- export PATH="/opt/texbin:$PATH"
###############################################################################
before_script:
# Check texlive version
- tlmgr version -v
# Check which tex packages we have available
- tlmgr info --only-installed ||
echo "Couldn't retrieve the texlive package list!"
###############################################################################
script:
# Use this for simple DVI
- latex -halt-on-error -interaction nonstopmode small2e
# Use this for simple PDF
- pdflatex -halt-on-error -interaction nonstopmode small2e
# Use this for PDF with bibtex citations
- pdflatex -halt-on-error -interaction nonstopmode main &&
pdflatex -halt-on-error -interaction nonstopmode main &&
pdflatex -halt-on-error -interaction nonstopmode main