forked from HipsterSloth/PSMoveSteamVRBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
23 lines (23 loc) · 898 Bytes
/
Copy path.travis.yml
File metadata and controls
23 lines (23 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Note: For now this build script just builds doxygen pages and deploys them to the gh-branch on each commit.
# When the PSMoveService has a linux library published (WIP) uncomment the build to compile
# against linux.
language: cpp
addons:
apt:
packages: cmake
before_install:
- sudo apt-get update && sudo apt-get install doxygen
# TODO uncomment this when PSMoveService has a linux published library
# - generate.sh
script:
doxygen doc/Doxyfile # Generate Doxygen Documentation
# TODO uncomment this when PSMoveService has a linux published library
# - build.sh
deploy: # Publish static Doxygen html files to gh-pages branch, accessible at https://<username>.github.io/PSMoveSteamVRBridge
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
keep-history: true
local-dir: docs/html
on:
branch: master