mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Don't run examples inside submodules and add libraries needed by testusbhostFAT.ino
This commit is contained in:
parent
251efba57b
commit
c7f9ed65e9
1 changed files with 7 additions and 6 deletions
13
.travis.yml
13
.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
|
||||
|
|
Loading…
Reference in a new issue