Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,12 @@
.vs/
.idea/

# OS Meta
.DS_Store

# CMake
cmake-build-debug/

# Generated docs
html/
latex/
29 changes: 29 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
language: cpp

addons:
apt:
packages:
- doxygen

jobs:
include:
- stage: build-docs
script:
- cd cpp_utils
- doxygen .

branches:
only:
- master

stages:
- build-docs

deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable
keep-history: true
local-dir: cpp_utils/html
on:
branch: master