From c7f9ed65e9f5fdd0994c3d0f146026b40af891b4 Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Sat, 23 May 2015 03:03:42 +0200 Subject: [PATCH] Don't run examples inside submodules and add libraries needed by testusbhostFAT.ino --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8493a433..70c18c1e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,12 +40,7 @@ env: - PLATFORMIO_CI_SRC=examples/PS3USB/PS3USB.ino - PLATFORMIO_CI_SRC=examples/PS4USB/PS4USB.ino - PLATFORMIO_CI_SRC=examples/PSBuzz/PSBuzz.ino - - PLATFORMIO_CI_SRC=examples/testusbhostFAT/RTClib/examples/datecalc/datecalc.ino - - PLATFORMIO_CI_SRC=examples/testusbhostFAT/RTClib/examples/ds1307Memory/ds1307Memory.ino - - PLATFORMIO_CI_SRC=examples/testusbhostFAT/RTClib/examples/ds1307SqwPin/ds1307SqwPin.ino - - PLATFORMIO_CI_SRC=examples/testusbhostFAT/RTClib/examples/RTC/RTC.ino - PLATFORMIO_CI_SRC=examples/testusbhostFAT/testusbhostFAT.ino - - PLATFORMIO_CI_SRC=examples/testusbhostFAT/xmem2/examples/QuadRAMtest/QuadRAMtest.ino - PLATFORMIO_CI_SRC=examples/USB_desc/USB_desc.ino - PLATFORMIO_CI_SRC=examples/Xbox/XBOXOLD/XBOXOLD.ino - PLATFORMIO_CI_SRC=examples/Xbox/XBOXONE/XBOXONE.ino @@ -55,7 +50,13 @@ env: install: - python -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio/master/scripts/get-platformio.py)" - wget https://github.com/xxxajk/spi4teensy3/archive/master.zip -O /tmp/spi4teensy3.zip + - wget https://github.com/xxxajk/xmem2/archive/master.zip -O /tmp/xmem2.zip + - wget https://github.com/xxxajk/generic_storage/archive/master.zip -O /tmp/generic_storage.zip + - wget https://github.com/xxxajk/RTClib/archive/master.zip -O /tmp/RTClib.zip - unzip /tmp/spi4teensy3.zip -d /tmp + - unzip /tmp/xmem2.zip -d /tmp + - unzip /tmp/generic_storage.zip -d /tmp + - unzip /tmp/RTClib.zip -d /tmp script: - - platformio ci --lib="." --lib="/tmp/spi4teensy3-master" --board=uno --board=teensy31 --board=due + - platformio ci --lib="." --lib="/tmp/spi4teensy3-master" --lib="/tmp/xmem2-master" --lib="/tmp/generic_storage-master" --lib="/tmp/RTClib-master" --board=uno --board=teensy31 --board=due