File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 36
36
before_install:
37
37
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh)
38
38
install:
39
- - arduino --install-library "Adafruit SleepyDog Library","Adafruit FONA Library"
39
+ # Note that every library should be installed in a seperate command
40
+ - arduino --install-library "Adafruit SleepyDog Library"
41
+ - arduino --install-library "Adafruit FONA Library"
40
42
script:
41
43
- build_main_platforms
42
44
notifications:
@@ -116,3 +118,9 @@ It will automatically add the `.YOUR_PLATFORM_HERE.test.skip` files to the examp
116
118
```
117
119
$ travis_skip esp8266
118
120
```
121
+
122
+ ## Using external libraries
123
+ External libraries (which are not hosted by the Arduino library manager) can be installed using the following command:
124
+ ```
125
+ - if [! -d "$HOME/arduino_ide/libraries/<Name>" ]; then git clone <URL> $HOME/arduino_ide/libraries/<Name>; fi
126
+ ```
You can’t perform that action at this time.
0 commit comments