From ce5ea22642f370359c81b28b7bc781f800ea0a2d Mon Sep 17 00:00:00 2001 From: Daniel Eichhorn <dani.eichhorn@squix.ch> Date: Sun, 22 May 2016 13:04:54 +0200 Subject: [PATCH] Added travis configuration --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..caa76ba --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: python +python: + - "2.7" + +# Cache PlatformIO packages using Travis CI container-based infrastructure +sudo: false +cache: + directories: + - "~/.platformio" + +env: + - PLATFORMIO_CI_SRC=examples/SSD1306UiDemo/SSD1306UiDemo.ino + - PLATFORMIO_CI_SRC=examples/SSD1306SimpleDemo/SSD1306SimpleDemo.ino + +install: + - pip install -U platformio + +script: + - platformio ci --lib="." --board=nodemcuv2 -- GitLab