mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-13 18:46:35 +02:00
11 lines
184 B
Bash
11 lines
184 B
Bash
![]() |
#!/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
|