2015-12-22 23:43:44 +01:00
|
|
|
#!/bin/sh -eux
|
|
|
|
|
|
|
|
pip install --user platformio
|
|
|
|
|
|
|
|
rm -r test
|
|
|
|
|
2016-12-28 20:23:27 +01:00
|
|
|
for EXAMPLE in $PWD/examples/*/*.ino;
|
2015-12-22 23:43:44 +01:00
|
|
|
do
|
2016-12-28 20:23:27 +01:00
|
|
|
platformio ci $EXAMPLE -l '.' -b $BOARD
|
2015-12-22 23:43:44 +01:00
|
|
|
done
|