We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa9d102 commit 38c657aCopy full SHA for 38c657a
.travis.yml
@@ -24,6 +24,8 @@ script:
24
- which arduino
25
- source hardware/esp8266com/esp8266/tests/common.sh
26
- arduino --board esp8266com:esp8266:generic --save-prefs
27
+ - arduino --get-pref sketchbook.path
28
+ - install_libraries
29
- build_sketches arduino $PWD/hardware/esp8266com/esp8266
30
31
notifications:
hardware/esp8266com/esp8266/tests/common.sh
@@ -20,3 +20,13 @@ function build_sketches()
20
fi
21
done
22
}
23
+
+function install_libraries()
+{
+ pushd libraries
+ # install ArduinoJson library
+ wget https://github.com/bblanchon/ArduinoJson/releases/download/v4.6.1/ArduinoJson-v4.6.1.zip && unzip ArduinoJson-v4.6.1.zip
+ popd
32
+}
0 commit comments