-
Notifications
You must be signed in to change notification settings - Fork 14
/
.travis.yml
38 lines (37 loc) · 909 Bytes
/
.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
matrix:
include:
- language: cpp
compiler:
- mpicxx
before_install:
- sudo apt-get update
- sudo apt-get install -y libopenmpi-dev
- sudo apt-get install -y libfftw3-dev
- sudo apt-get install -y libopenblas-dev liblapack-dev
- sudo apt-get install gfortran
script:
- ./bootstrap
- ./configure
- make
- language: python
python:
- 3.7
before_install:
- cd docs/
install:
- sudo apt-get install -y doxygen
- pip install -r requirements.txt
script:
- make html
- touch _build/html/.nojekyll
- cd ..
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
keep_history: true
local_dir: docs/_build/html
on:
branch: master
notifications:
email: false