File tree Expand file tree Collapse file tree 3 files changed +19
-8
lines changed Expand file tree Collapse file tree 3 files changed +19
-8
lines changed Original file line number Diff line number Diff line change
1
+ language : python
2
+ python :
3
+ - " 2.7"
4
+
5
+ # Cache PlatformIO packages using Travis CI container-based infrastructure
1
6
sudo : false
2
- language : cpp
3
- matrix :
4
- include :
5
- - env : SCRIPT=platformioEsp8266 BOARD=d1_mini
6
7
cache :
7
- directories :
8
- - " ~/.platformio"
8
+ directories :
9
+ - " ~/.platformio"
10
+
11
+ env :
12
+ - SCRIPT=platformioEsp8266 BOARD=d1_mini
13
+
14
+ install :
15
+ - pip install -U platformio
16
+ #
17
+ # Libraries from PlatformIO Library Registry:
18
+ #
19
+ # http://platformio.org/lib/show/64/ArduinoJson
20
+ - platformio lib -g install 64
9
21
script : scripts/travis/$SCRIPT.sh
Original file line number Diff line number Diff line change @@ -14,3 +14,4 @@ lib_deps_external = ArduinoJson
14
14
platform = espressif8266
15
15
board = d1_mini
16
16
framework = arduino
17
+ lib_deps = ${common.lib_deps_external}
Original file line number Diff line number Diff line change 1
1
#! /bin/sh -eux
2
2
3
- pip install --user platformio
4
-
5
3
for EXAMPLE in $PWD /examples/ESP8266/* /* .ino;
6
4
do
7
5
platformio ci $EXAMPLE -l ' .' -b $BOARD
You can’t perform that action at this time.
0 commit comments