-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f72886
commit 949a068
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ | |
*.vcxproj.user | ||
*.vs | ||
*.elf | ||
.travis.yml | ||
.pioenvs | ||
.piolibdeps | ||
.vscode | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
sudo: false | ||
language: ruby | ||
dist: bionic | ||
git: | ||
depth: false | ||
quiet: true | ||
# Blacklist | ||
branches: | ||
except: | ||
- gh-pages | ||
before_install: | ||
- sudo apt-get install -y doxygen graphviz | ||
script: | ||
- bundle install | ||
- bundle exec arduino_ci_remote.rb | ||
- doxygen doc/Doxyfile | ||
deploy: | ||
provider: pages | ||
skip-cleanup: true | ||
github-token: $GITHUB_TOKEN | ||
keep-history: false | ||
local-dir: doc/html | ||
verbose: true | ||
on: | ||
branch: master |