2016-03-08 23:36:17 +00:00
|
|
|
language: python
|
|
|
|
|
python:
|
2021-04-30 00:39:16 +01:00
|
|
|
- "3.6"
|
2016-03-08 23:36:17 +00:00
|
|
|
|
|
|
|
|
# Cache PlatformIO packages using Travis CI container-based infrastructure
|
|
|
|
|
sudo: false
|
|
|
|
|
cache:
|
|
|
|
|
directories:
|
|
|
|
|
- "~/.platformio"
|
|
|
|
|
|
|
|
|
|
env:
|
2016-03-30 14:22:57 +01:00
|
|
|
- PLATFORMIO_CI_SRC=Examples/DeepSleep
|
2016-11-18 02:13:22 +00:00
|
|
|
- PLATFORMIO_CI_SRC=Examples/DeepSleep_usingLowPowerLibrary
|
2016-03-08 23:36:17 +00:00
|
|
|
- PLATFORMIO_CI_SRC=Examples/DoorBellMote
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/GarageMote
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/Gateway
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/IOShield
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/MailboxNotifier
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/MightyBoostControl
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/MightyHat
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/MotionMote/MotionMote.ino
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/Node
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/OLEDMote
|
2020-04-17 00:31:37 +01:00
|
|
|
- PLATFORMIO_CI_SRC=Examples/PiGateway_Basic/PiGateway_Basic.ino
|
2016-03-08 23:36:17 +00:00
|
|
|
- PLATFORMIO_CI_SRC=Examples/PiGateway/PiGateway.ino
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/PulseMeter
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/RandomNumbers
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/SonarMote/SonarMote_DistanceReader/SonarMote_DistanceReader.ino
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/SonarMote/SonarMote_DistanceTracker/SonarMote_DistanceTracker.ino
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/SonarMote/SonarMote_Parking/SonarMote_Parking.ino
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/SonarMote/SonarMote_Parking_Sound_OLED/SonarMote_Parking_Sound_OLED.ino
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/Struct_receive
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/Struct_send
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/TxRxBlinky
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/WeatherNode
|
2016-11-18 03:13:19 +00:00
|
|
|
- PLATFORMIO_CI_SRC=Examples/WirelessProgramming_OTA/Target
|
2016-11-18 03:07:03 +00:00
|
|
|
- PLATFORMIO_CI_SRC=Examples/WirelessProgramming_OTA/Programmer
|
2021-08-31 20:24:41 +01:00
|
|
|
- PLATFORMIO_CI_SRC=Examples/TxPowerTest_Transmitter
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/TxPowerTest_Receiver
|
2021-12-15 16:48:17 +00:00
|
|
|
- PLATFORMIO_CI_SRC=Examples/RangeTest_Gateway
|
|
|
|
|
- PLATFORMIO_CI_SRC=Examples/RangeTest_Transmitter
|
2016-03-08 23:36:17 +00:00
|
|
|
|
2021-12-15 17:10:10 +00:00
|
|
|
lib_deps =
|
|
|
|
|
|
|
|
|
|
# RECOMMENDED
|
|
|
|
|
# Accept new functionality in a backwards compatible manner and patches
|
|
|
|
|
lowpowerlab/LowPower_LowPowerLab @ ^2.2
|
|
|
|
|
platformio/Streaming @ ^0.0.0
|
|
|
|
|
|
2016-03-08 23:36:17 +00:00
|
|
|
install:
|
|
|
|
|
- pip install -U platformio
|
2019-01-16 15:22:35 +00:00
|
|
|
- platformio update
|
2016-03-08 23:36:17 +00:00
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Libraries from PlatformIO Library Registry:
|
|
|
|
|
#
|
|
|
|
|
# http://platformio.org/#!/lib/show/7/U8glib
|
2021-12-15 17:10:10 +00:00
|
|
|
# http://platformio.org/#!/lib/show/11817/LowPower
|
2016-03-08 23:36:17 +00:00
|
|
|
# http://platformio.org/#!/lib/show/125/SPIFlash
|
|
|
|
|
# http://platformio.org/#!/lib/show/131/TimerOne
|
|
|
|
|
# http://platformio.org/#!/lib/show/136/LiquidCrystal
|
|
|
|
|
# http://platformio.org/#!/lib/show/176/NewPing
|
|
|
|
|
# http://platformio.org/#!/lib/show/531/WirelessHEX69
|
|
|
|
|
# http://platformio.org/#!/lib/show/532/BMP180
|
|
|
|
|
# http://platformio.org/#!/lib/show/536/Si7021
|
2016-11-02 17:00:16 +00:00
|
|
|
# http://platformio.org/#!/lib/show/684/Sparkfun BME280
|
2020-04-16 14:58:08 +01:00
|
|
|
# https://platformio.org/lib/show/560/Streaming
|
|
|
|
|
# https://platformio.org/lib/show/6230/PString-Arduino-lib
|
2021-12-15 16:53:45 +00:00
|
|
|
# https://platformio.org/lib/show/942/U8g2
|
2016-03-08 23:36:17 +00:00
|
|
|
|
2021-12-15 17:10:10 +00:00
|
|
|
- platformio lib -g install 7 11817 125 131 136 170 176 531 532 536 684 560 6230 942
|
2016-03-08 23:36:17 +00:00
|
|
|
|
|
|
|
|
script:
|
2016-03-30 09:57:27 +01:00
|
|
|
- platformio ci --board=moteino --lib=.
|