Restored library.json file. Added Travis CI support
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
language: python
|
||||
|
||||
cache:
|
||||
directories:
|
||||
- "~/.platformio"
|
||||
|
||||
install:
|
||||
- pip install -U platformio
|
||||
|
||||
env:
|
||||
- BOARD=uno
|
||||
- BOARD=leonardo
|
||||
- BOARD=megaatmega2560
|
||||
- BOARD=due
|
||||
|
||||
script:
|
||||
- set -eo pipefail;
|
||||
for e in examples/*; do
|
||||
platformio ci --board=$BOARD --lib=. $e/*;
|
||||
done
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "Bounce2",
|
||||
"keywords": "bounce, signal, input, ouput",
|
||||
"description": "Debouncing library for Arduino or Wiring",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/thomasfredericks/Bounce2.git"
|
||||
},
|
||||
"version": "2.41",
|
||||
"exclude": [
|
||||
"*.png",
|
||||
"*.zip"
|
||||
],
|
||||
"frameworks": "arduino",
|
||||
"platforms": "*"
|
||||
}
|
||||
Reference in New Issue
Block a user