diff --git a/.gitignore b/.gitignore index 15d2ae94..e380bfbe 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,12 @@ .vs/ .idea/ +# OS Meta +.DS_Store + # CMake cmake-build-debug/ + +# Generated docs +html/ +latex/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..3f6a3530 --- /dev/null +++ b/.travis.yml @@ -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