forked from siefkenj/IBLLinearAlgebra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
27 lines (26 loc) · 974 Bytes
/
.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
#before_install:
# # Install makeindex, if you do not use an index you can remove this (also remove the extra makeindex call).
# - sudo apt-get install texlive-binaries
install:
- cd ./testing
- source ./install.sh
cache:
directories:
- /tmp/texlive
script:
- cd $TRAVIS_BUILD_DIR/book/
- latexmk -lualatex -latexoption="-interaction nonstopmode -halt-on-error -file-line-error -shell-escape" linearalgebra-book.tex
- latexmk -lualatex -latexoption="-interaction nonstopmode -halt-on-error -file-line-error -shell-escape" linearalgebra-instructor.tex
# We build the first two flavors in order so we can find errors more easily. The final build script builds in parallel
- cd $TRAVIS_BUILD_DIR
- ./makedist.sh
#deploy:
# provider: releases
# api_key:
# secure: GK0T9i6YKZlKmxurW4B8lkBGC
# file:
# - ./problemsets-mat223/linearalgebra.pdf
# skip_cleanup: true
# on:
# tags: true
# branch: master