Преглед изворни кода

Travis: Compile all examples with PlatformIO

Benoit Blanchon пре 9 година
родитељ
комит
c5388cf8e7
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      scripts/travis/platformio.sh

+ 2 - 2
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