File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ before_install:
75
75
- installLibrary arduino-libraries/Ethernet
76
76
- installLibrary arduino-libraries/Arduino_ConnectionHandler
77
77
- installLibrary arduino-libraries/Arduino_DebugUtils
78
- - buildExampleSketch() { arduino-cli compile --warnings all --fqbn $BOARD $PWD/examples/$1; }
78
+ - buildExampleSketch() { arduino-cli compile --warnings all --fqbn $BOARD --additional-urls http://arduino.esp8266.com/stable/package_esp8266com_index.json $PWD/examples/$1; }
79
79
- buildExampleUtilitySketch() { arduino-cli compile --warnings all --fqbn $BOARD $PWD/examples/utility/$1; }
80
80
install :
81
81
- mkdir -p $HOME/Arduino/libraries
@@ -96,6 +96,10 @@ script:
96
96
if [ "$BOARD" == "arduino:samd:mkrgsm1400" ]; then
97
97
buildExampleSketch GSM_Cloud_Blink;
98
98
fi
99
+ - |
100
+ if [ "$BOARD" == "esp8266:esp8266:huzzah" ]; then
101
+ buildExampleSketch ArduinoIoTCloud_ESP8266;
102
+ fi
99
103
notifications :
100
104
webhooks :
101
105
urls :
You can’t perform that action at this time.
0 commit comments