From 0512fec2dfa703cff6b5cf4b1b44d7e5b9db43c8 Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Mon, 10 Sep 2018 23:14:37 +0200 Subject: [PATCH] Skip Arduino Uno on those examples that won't fit into memory --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index b91a865c..cd300518 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,15 +19,15 @@ env: - PLATFORMIO_CI_SRC=examples/Bluetooth/BTHID - PLATFORMIO_CI_SRC=examples/Bluetooth/PS3BT - PLATFORMIO_CI_SRC=examples/Bluetooth/PS3Multi - - PLATFORMIO_CI_SRC=examples/Bluetooth/PS3SPP + - PLATFORMIO_CI_SRC=examples/Bluetooth/PS3SPP SKIP_UNO=true - PLATFORMIO_CI_SRC=examples/Bluetooth/PS4BT - PLATFORMIO_CI_SRC=examples/Bluetooth/SPP - PLATFORMIO_CI_SRC=examples/Bluetooth/SPPMulti - PLATFORMIO_CI_SRC=examples/Bluetooth/Wii - - PLATFORMIO_CI_SRC=examples/Bluetooth/WiiBalanceBoard - - PLATFORMIO_CI_SRC=examples/Bluetooth/WiiIRCamera PLATFORMIO_BUILD_FLAGS="-DWIICAMERA" - - PLATFORMIO_CI_SRC=examples/Bluetooth/WiiMulti - - PLATFORMIO_CI_SRC=examples/Bluetooth/WiiUProController + - PLATFORMIO_CI_SRC=examples/Bluetooth/WiiBalanceBoard SKIP_UNO=true + - PLATFORMIO_CI_SRC=examples/Bluetooth/WiiIRCamera PLATFORMIO_BUILD_FLAGS="-DWIICAMERA" SKIP_UNO=true + - PLATFORMIO_CI_SRC=examples/Bluetooth/WiiMulti SKIP_UNO=true + - PLATFORMIO_CI_SRC=examples/Bluetooth/WiiUProController SKIP_UNO=true - PLATFORMIO_CI_SRC=examples/board_qc - PLATFORMIO_CI_SRC=examples/cdc_XR21B1411/XR_terminal - PLATFORMIO_CI_SRC=examples/ftdi/USBFTDILoopback @@ -74,4 +74,5 @@ install: - platformio lib install 62 416 417 script: - - platformio ci --lib="." --board=uno --board=due --board=genuino101 --board=teensy30 --board=teensy31 --board=teensy35 --board=teensy36 --board=teensylc --board=esp12e --board=nodemcu --board=esp32dev + - if [[ -z "$SKIP_UNO" ]]; then UNO="--board=uno"; fi + - platformio ci --lib="." $UNO --board=due --board=genuino101 --board=teensy30 --board=teensy31 --board=teensy35 --board=teensy36 --board=teensylc --board=esp12e --board=nodemcu --board=esp32dev