10 lines
147 B
Bash
10 lines
147 B
Bash
#!/bin/sh -eux
|
|
|
|
pip install --user platformio
|
|
|
|
rm -r test
|
|
|
|
for EXAMPLE in $PWD/examples/*/*.ino;
|
|
do
|
|
platformio ci $EXAMPLE -l '.' -b $BOARD
|
|
done
|