summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 405b25437e3a2b382f5694ca2b6d9aafac346ede (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
33
34
35
36
37
38
39
sudo: false
dist: trusty

cache:
  apt: true

git:
  depth: false

addons:
  apt:
    packages:
      - python-pip
      - latexmk
      - libalgorithm-diff-perl
      - texlive
      - texlive-latex-extra
      - texlive-humanities
      - texlive-generic-recommended
      - graphviz
      - texlive-generic-extra


language: python
python:
  - "2.7"
install:
 - "pip install -r doc/requirements.txt"
script:
  - bash openpower/scripts/update-defconfigs.sh
  - cd doc/; make latexpdf 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
OpenPOWER on IntegriCloud