You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
942 B
20 lines
942 B
sudo: required
|
|
dist: trusty
|
|
branches:
|
|
only:
|
|
- master
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install -y --no-install-recommends texlive
|
|
- sudo apt-get install -y --no-install-recommends texlive-bibtex-extra
|
|
- sudo apt-get install -y --no-install-recommends texlive-fonts-extra
|
|
- sudo apt-get install -y --no-install-recommends texlive-lang-english
|
|
- sudo apt-get install -y --no-install-recommends texlive-lang-german
|
|
- sudo apt-get install -y --no-install-recommends texlive-latex-extra
|
|
- sudo apt-get install -y --no-install-recommends texlive-math-extra
|
|
- sudo apt-get install -y --no-install-recommends texlive-publishers
|
|
- sudo apt-get install -y --no-install-recommends texlive-science
|
|
script:
|
|
- pdflatex -interaction=nonstopmode -halt-on-error thesis.tex
|
|
- test -f thesis-blx.bib && ( bibtex thesis; pdflatex thesis.tex )
|
|
- pdflatex -interaction=nonstopmode -halt-on-error thesis.tex
|
|
|