-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (24 loc) · 934 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
28
29
dist: trusty
sudo: required
addons:
apt:
packages:
- texlive-full
- imagemagick
before_install:
- wget http://mirrors.ctan.org/macros/latex/contrib/titlesec.zip && unzip titlesec.zip
- sudo rm -r /usr/share/texlive/texmf-dist/tex/latex/titlesec
- sudo mv titlesec /usr/share/texlive/texmf-dist/tex/latex/
- wget https://raw.githubusercontent.com/kmorel/UseLATEX/master/UseLATEX.cmake
- CMAKE_ROOT=$(cmake --system-information | grep "CMAKE_ROOT " | cut -d' ' -f 2 | cut -d'"' -f2)
- sudo mv UseLATEX.cmake $CMAKE_ROOT/Modules/
- wget https://github.com/latex4ei/latex4ei-packages/archive/master.zip && unzip master.zip
- sudo mv latex4ei-packages-master/template-files/latex4ei /usr/share/texlive/texmf-dist/tex/latex/latex4ei
- sudo mktexlsr
install: true
script:
- pdflatex StochastischeSignalePraktikum.tex
- mkdir -p build
- cd build && cmake ..; make
notifications:
email: false