chore: Add all Teensy boards to CI

This commit is contained in:
Francois Best 2020-04-17 08:22:05 +02:00
parent a9664ef4a4
commit f8707ed49a
1 changed files with 17 additions and 3 deletions

View File

@ -9,12 +9,12 @@ os:
- linux - linux
python: python:
- '2.7' - "2.7"
# Cache PlatformIO packages using Travis CI container-based infrastructure # Cache PlatformIO packages using Travis CI container-based infrastructure
cache: cache:
directories: directories:
- '~/.platformio' - "~/.platformio"
env: env:
global: global:
@ -74,7 +74,21 @@ script:
# Build current example # Build current example
- | - |
if [ ! "${BUILD_UNIT_TESTS}" ]; then if [ ! "${BUILD_UNIT_TESTS}" ]; then
platformio ci --lib="." --board=uno --board="due" --board="leonardo" --board="micro" --board="nanoatmega328" --board="megaatmega2560" platformio ci --lib="." \
--board="uno" \
--board="due" \
--board="zero" \
--board="leonardo" \
--board="micro" \
--board="nanoatmega328" \
--board="megaatmega2560" \
--board="teensy2" \
--board="teensy30" \
--board="teensy31" \
--board="teensy35" \
--board="teensy36" \
--board="teensy40" \
--board="teensylc"
fi fi
after_success: after_success: