mirror of
https://github.com/arendst/Tasmota.git
synced 2026-03-10 01:07:57 +01:00
Arduino IDE: Place libraries in portable/sketchbook/libraries folder. PlatformIO: Place libraries in your projects lib folder.
11 lines
147 B
Bash
11 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
|