-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
26 lines (23 loc) · 937 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
sudo: required
dist: bionic
before_install:
- sudo apt-get -qq update && sudo apt-get install -y --no-install-recommends texlive-fonts-recommended texlive-latex-extra texlive-fonts-extra dvipng texlive-latex-recommended latexmk texlive-lang-german texlive-font-utils texlive-science texlive-pictures rubber graphviz inkscape python3-opencv lmodern texlive-bibtex-extra biber
- wget --no-verbose https://raw.githubusercontent.com/cebe/pdfpc-latex-notes/master/pdfpcnotes.sty -O Presentation/pdfpcnotes.sty
git:
submodules: false
script:
- mkdir output
- cd Thesis
- make
- mv main_mrm.pdf ../output/Thesis.pdf
- cd ../Presentation
- make
- mv main.pdf ../output/Presentation.pdf
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
keep-history: true
local-dir: output
on:
branch: master