From 7b5087e1af63ccbbf46945c6b22b2c31c955fffa Mon Sep 17 00:00:00 2001 From: Jan Delgado Date: Tue, 13 Jun 2017 20:01:49 +0200 Subject: [PATCH] added support for travis ci --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..8eee5c5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: python +python: + - "2.7" +env: + - BOARD=uno + - BOARD=leonardo + - BOARD=esp01 + +install: + - python -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio/master/scripts/get-platformio.py)" + +script: + - cd examples/FullFunction + - platformio ci -l ../.. FullFunction.ino --board=$BOARD + - cd ../GetStarted + - platformio ci -l ../.. getStarted.ino --board=$BOARD +