From c5388cf8e737857e462b274fe558ceebc5a824e4 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Wed, 28 Dec 2016 20:23:27 +0100 Subject: [PATCH] Travis: Compile all examples with PlatformIO --- scripts/travis/platformio.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/travis/platformio.sh b/scripts/travis/platformio.sh index 5831129c..4bb7a4c9 100755 --- a/scripts/travis/platformio.sh +++ b/scripts/travis/platformio.sh @@ -4,7 +4,7 @@ pip install --user platformio rm -r test -for EXAMPLE in JsonParserExample JsonGeneratorExample +for EXAMPLE in $PWD/examples/*/*.ino; do - platformio ci examples/$EXAMPLE/$EXAMPLE.ino -l '.' -b $BOARD + platformio ci $EXAMPLE -l '.' -b $BOARD done