From 566f9de92b3bd81f735bce8c4562004e5016e16a Mon Sep 17 00:00:00 2001 From: Me No Dev Date: Mon, 1 Feb 2016 18:31:12 +0200 Subject: [PATCH] travis is not detecting the libraries required to build the sketch --- examples/ESP32_AsyncFSBrowser/ESP32_AsyncFSBrowser.ino | 3 +++ examples/ESP_AsyncFSBrowser/ESP_AsyncFSBrowser.ino | 3 +++ travis/common.sh | 5 ----- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/examples/ESP32_AsyncFSBrowser/ESP32_AsyncFSBrowser.ino b/examples/ESP32_AsyncFSBrowser/ESP32_AsyncFSBrowser.ino index bd05998..ff73914 100644 --- a/examples/ESP32_AsyncFSBrowser/ESP32_AsyncFSBrowser.ino +++ b/examples/ESP32_AsyncFSBrowser/ESP32_AsyncFSBrowser.ino @@ -1,4 +1,7 @@ #ifdef ESP8266 +#include +#include +#include void begin(){} void loop(){} #else diff --git a/examples/ESP_AsyncFSBrowser/ESP_AsyncFSBrowser.ino b/examples/ESP_AsyncFSBrowser/ESP_AsyncFSBrowser.ino index b548054..6e1628c 100644 --- a/examples/ESP_AsyncFSBrowser/ESP_AsyncFSBrowser.ino +++ b/examples/ESP_AsyncFSBrowser/ESP_AsyncFSBrowser.ino @@ -1,4 +1,7 @@ #ifdef ESP31B +#include +#include +#include void begin(){} void loop(){} #else diff --git a/travis/common.sh b/travis/common.sh index 566ee10..413636d 100755 --- a/travis/common.sh +++ b/travis/common.sh @@ -6,11 +6,6 @@ function build_sketches() local srcpath=$2 local sketches=$(find $srcpath -name *.ino) for sketch in $sketches; do - local sketchdir=$(dirname $sketch) - if [[ -f "$sketchdir/.test.skip" ]]; then - echo -e "\n\n ------------ Skipping $sketch ------------ \n\n"; - continue - fi echo -e "\n\n ------------ Building $sketch ------------ \n\n"; $arduino --verify $sketch; local result=$?