blob: 1e7ac9c9470e29f51e252b6338f576518b129ef2 (
plain)
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
|
sudo: false
dist: trusty
cache:
apt: true
git:
depth: false
addons:
apt:
packages:
- python-pip
- libalgorithm-diff-perl
- graphviz
language: python
python:
- "2.7"
install:
- "pip install -r doc/requirements.txt"
script:
- bash openpower/scripts/update-defconfigs.sh
- cd doc/; make html
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
local_dir: "doc/_build/html"
on:
branch: master
|