-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (24 loc) · 751 Bytes
/
Copy path.travis.yml
File metadata and controls
25 lines (24 loc) · 751 Bytes
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
# Travis YAML based on idea at
# https://therenegadecoder.com/code/how-to-build-latex-with-travis-ci-and-minted/
language: generic
sudo: required
before_install:
#
install:
- source ./texlive/texlive_install.sh
cache:
directories:
- /tmp/texlive
- $HOME/.texlive
before_script:
# Change working directory so including files will work
- cd $TRAVIS_BUILD_DIR/tests/article/
script:
- texliveonfly --compiler=pdflatex ./instructions-EN.tex
- texliveonfly --compiler=pdflatex ./instructions-EN.tex
- texliveonfly --compiler=pdflatex ./instructions-EN.tex
- bibtex ./instructions-EN
- texliveonfly --compiler=pdflatex ./instructions-EN.tex
- texliveonfly --compiler=pdflatex ./instructions-EN.tex
notifications:
email: false