blob: 405b25437e3a2b382f5694ca2b6d9aafac346ede [file] [log] [blame]
Stewart Smith59d3cb42018-02-12 11:52:12 +11001sudo: false
2dist: trusty
3
4cache:
5 apt: true
6
7git:
8 depth: false
9
10addons:
11 apt:
12 packages:
13 - python-pip
14 - latexmk
15 - libalgorithm-diff-perl
16 - texlive
17 - texlive-latex-extra
18 - texlive-humanities
19 - texlive-generic-recommended
20 - graphviz
21 - texlive-generic-extra
22
23
24language: python
25python:
26 - "2.7"
27install:
28 - "pip install -r doc/requirements.txt"
29script:
Stewart Smith94800072018-04-10 17:56:52 -050030 - bash openpower/scripts/update-defconfigs.sh
Stewart Smith59d3cb42018-02-12 11:52:12 +110031 - cd doc/; make latexpdf html
32
33deploy:
34 provider: pages
35 skip-cleanup: true
36 github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
37 local_dir: "doc/_build/html"
38 on:
39 branch: master