-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (32 loc) · 1005 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
30
31
32
33
34
35
36
37
38
39
language: python
addons:
apt:
packages:
- texlive-latex-recommended
- texlive-latex-extra
- texlive-fonts-recommended
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/7d967d9679efbbc43466
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
before_install:
- mkdir -p $HOME/texlive && curl -L https://github.com/urdh/texlive-blob/releases/download/20150712/texlive.tar.xz | tar -JxC $HOME/texlive
install:
# Sphinx requirements
- pip install -r requirements.txt
# Latex requirements
- PATH=$HOME/texlive/bin/x86_64-linux:$PATH
- tlmgr install combelow
- tlmgr install babel-french
- tlmgr install babel-german
- tlmgr install babel-romanian
- tlmgr install babel-italian
before_script:
- ./scripts/ci/setup_git.sh
script:
- ./scripts/build-docs.sh
after_success:
- ./scripts/ci/deploy-docs.sh