Browse Source

Clear out existing files prior to re-import.

main
David Antliff 8 years ago
parent
commit
0b388a127f
  1. 3
      .gitignore
  2. 39
      .travis.yml

3
.gitignore

@ -1,3 +0,0 @@
build/
sdkconfig.old

39
.travis.yml

@ -1,39 +0,0 @@
# Build and deploy doxygen documention to GitHub Pages
sudo: false
dist: trusty
# Blacklist
branches:
only:
- master
# Environment variables
env:
global:
- GH_REPO_REF: github.com/DavidAntliff/ESP32-DS18B20.git
# Install dependencies
addons:
apt:
packages:
- doxygen
- doxygen-doc
- doxygen-latex
- doxygen-gui
- graphviz
# Build the docs
script:
- cd doc
- doxygen
# Deploy using Travis-CI/GitHub Pages integration support
deploy:
provider: pages
skip_cleanup: true
local_dir: $TRAVIS_BUILD_DIR/doc/html
github_token: $GITHUB_TOKEN
on:
branch: master
target_branch: gh-pages
Loading…
Cancel
Save