forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (34 loc) · 786 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
sudo: false
matrix:
fast_finish: true
# Note: Workaround travis-ci/travis-ci#4681
# Exclude default job which lacks our included environment variables.
exclude:
- os: linux
- env:
include:
- os: linux
dist: bionic
env: JOB=doxygen
addons:
apt:
packages:
- doxygen
- doxygen-doc
- doxygen-latex
- doxygen-gui
- graphviz
- cmake
script: |
cat > CMakeLists.txt <<\EOF
add_subdirectory(doc)
EOF
cmake .
make doc
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_API_TOKEN # Set in travis-ci.org dashboard
local_dir: doc/html
on:
branch: dev