From a3de0c3bb51b683cca3b00dd8689e1e6fe23d6aa Mon Sep 17 00:00:00 2001 From: Thijs Triemstra Date: Sun, 26 Jul 2020 20:48:02 +0200 Subject: adjust lib path --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 83bd5f8..2e3c749 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,4 +38,4 @@ install: - platformio update script: - - platformio ci --board=esp-wrover-kit + - platformio ci --library="." --board=esp-wrover-kit -- cgit v1.2.3 From e01e8efc8094d562fa9b3c42f96684fe6532c1cd Mon Sep 17 00:00:00 2001 From: Thijs Triemstra Date: Sun, 26 Jul 2020 20:50:15 +0200 Subject: fix param name --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2e3c749..11158e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,4 +38,4 @@ install: - platformio update script: - - platformio ci --library="." --board=esp-wrover-kit + - platformio ci --lib="." --board=esp-wrover-kit -- cgit v1.2.3 From 9bdb39607307dd25117acfb0794c479846d7c1f8 Mon Sep 17 00:00:00 2001 From: Thijs Triemstra Date: Sun, 26 Jul 2020 20:54:55 +0200 Subject: add more examples to build --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 11158e8..d88a04c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,6 +32,8 @@ cache: env: - PLATFORMIO_CI_SRC=examples/Single_Shot/Single_Shot.ino + - PLATFORMIO_CI_SRC=examples/Continous/Continous.ino + - PLATFORMIO_CI_SRC=examples/Alert_Window_Mode/Alert_Window_Mode.ino install: - pip install -U platformio pip setuptools -- cgit v1.2.3 From 2de6f0b5c9fd360f630117d5dc0b535c2a6afbd0 Mon Sep 17 00:00:00 2001 From: Thijs Triemstra Date: Sun, 26 Jul 2020 20:56:02 +0200 Subject: also test on arduino uno --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d88a04c..aa1001a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,4 +40,4 @@ install: - platformio update script: - - platformio ci --lib="." --board=esp-wrover-kit + - platformio ci --lib="." --board=uno --board=esp-wrover-kit -- cgit v1.2.3