forked from qgis/QGIS-Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
60 lines (50 loc) · 1.39 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
language: python
python:
- "3.7"
dist:
- bionic
services:
- docker
cache:
apt: true
pip: true
directories:
# Preserve the output dir for faster build times
/output
# How long we should wait for the cache to be fetched before giving up and
# start without a cache
timeout: 1000
if: NOT branch =~ /^(cherry-pick-)?backport-\d+-on-/
#addons:
# apt:
# packages:
# - texlive-latex-recommended
# - texlive-latex-extra
# - texlive-fonts-recommended
notifications:
irc:
channels:
- "chat.freenode.net#qgis-test"
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
skip_join: true
# 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
- pip3 install -r REQUIREMENTS.txt
# Latex requirements
# maybe later...
#before_script:
# - ./scripts/ci/setup_git.sh
script:
- make html
- make -f docker.mk doctest
#after_success:
# - ./scripts/ci/deploy-docs.sh