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:
7575 - installLibrary arduino-libraries/Ethernet
7676 - installLibrary arduino-libraries/Arduino_ConnectionHandler
7777 - 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; }
7979 - buildExampleUtilitySketch() { arduino-cli compile --warnings all --fqbn $BOARD $PWD/examples/utility/$1; }
8080install :
8181 - mkdir -p $HOME/Arduino/libraries
@@ -96,6 +96,10 @@ script:
9696 if [ "$BOARD" == "arduino:samd:mkrgsm1400" ]; then
9797 buildExampleSketch GSM_Cloud_Blink;
9898 fi
99+ - |
100+ if [ "$BOARD" == "esp8266:esp8266:huzzah" ]; then
101+ buildExampleSketch ArduinoIoTCloud_ESP8266;
102+ fi
99103notifications :
100104 webhooks :
101105 urls :
You can’t perform that action at this time.
0 commit comments