Made the library compatible with platform.io (issue #181)

This commit is contained in:
Ivan Kravets
2015-12-22 23:43:44 +01:00
committed by Benoit Blanchon
parent b54f1ffc1d
commit c57e6f3bd8
5 changed files with 46 additions and 6 deletions

10
scripts/travis/platformio.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh -eux
pip install --user platformio
rm -r test
for EXAMPLE in JsonParserExample JsonGeneratorExample
do
platformio ci examples/$EXAMPLE/$EXAMPLE.ino -l '.' -b $BOARD
done