summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 071a7d1478e5e4434bdd84fe62ea5e66fd0d164a (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
language: cpp
os:
    - linux-ppc64le 
    - linux
dist: xenial
compiler:
  - gcc
  - clang
sudo: required

addons:
    apt:
        update: true
        packages:
            - texlive
            - texlive-generic-recommended
            - texlive-extra-utils
            - texlive-latex-extra
            - texlive-font-utils
            - ghostscript
            - libxml2-utils
            - cmake
            - cmake-data

script:
    - mkdir build
    - cd build
    - cmake -G "Unix Makefiles" -Dbuild_doc=ON -Dbuild_wizard=ON ..
    - make
    - make tests
    - make docs