-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from SV-Zanshin/Development_v1.0.12
Development v1.0.12
- Loading branch information
Showing
7 changed files
with
78 additions
and
64 deletions.
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
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 |
---|---|---|
@@ -1,42 +1,68 @@ | ||
###################################################################################################### | ||
## Travis-CI control file ## | ||
## ## | ||
## Date Developer Comments ## | ||
## ========== =================== ================================================================= ## | ||
## 2020-05-11 Arnd@SV-Zanshin Removed Adafruit libraries which now caused Travis to fail ## | ||
## 2020-05-03 Arnd@SV-Zanshin Commented out Adafruit libraries which now caused Travis to fail ## | ||
## 2019-01-20 Arnd@SV-Zanshin Linked to Adafruit script rather than manually defining all tests ## | ||
## 2019-01-19 Arnd@SV-Zanshin Initial coding ## | ||
## Date Developer Comments ## | ||
## ========== ========== ========================================================================== ## | ||
## 2020-07-12 SV-Zanshin Commented out the "cache:" section, as that was causing the build to fail ## | ||
## 2020-07-03 SV-Zanshin Added elements to call "clang-format" to make sure formatting is correct ## | ||
## 2020-05-11 SV-Zanshin Removed Adafruit libraries which now caused Travis to fail ## | ||
## 2020-05-03 SV-Zanshin Commented out Adafruit libraries which now caused Travis to fail ## | ||
## 2019-01-20 SV-Zanshin Linked to Adafruit script rather than manually defining all tests ## | ||
## 2019-01-19 SV-Zanshin Initial coding ## | ||
## ## | ||
###################################################################################################### | ||
language: c | ||
sudo: false | ||
|
||
# Blacklist | ||
######################################################### | ||
# Keep the gh-pages from being included in the CI runs ## | ||
######################################################### | ||
branches: | ||
except: | ||
- gh-pages | ||
|
||
|
||
#cache: | ||
# directories: | ||
# - ~/arduino_ide | ||
# - ~/.arduino15/packages/ | ||
|
||
git: | ||
depth: false | ||
quiet: true | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- llvm-toolchain-trusty-5.0 | ||
- key_url: 'http://apt.llvm.org/llvm-snapshot.gpg.key' | ||
packages: | ||
- python3-pip | ||
- python3-wheel | ||
- clang-format-5.0 | ||
|
||
env: | ||
global: | ||
- PRETTYNAME="SV-Zanshin INA2xx Arduino Library" | ||
- DOXYFILE: $TRAVIS_BUILD_DIR/Doxyfile | ||
|
||
before_install: | ||
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh) | ||
- curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/run-clang-format.py > run-clang-format.py | ||
|
||
|
||
install: | ||
|
||
script: | ||
- python run-clang-format.py -r . | ||
- build_main_platforms | ||
|
||
notifications: | ||
email: | ||
on_success: change | ||
on_failure: change | ||
|
||
########################################################### | ||
# Generate the Doxygen documentation upon successful run ## | ||
########################################################### | ||
after_success: | ||
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/doxy_gen_and_deploy.sh) |
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
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
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
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
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