Skip to content

Commit f8707ed

Browse files
committed
chore: Add all Teensy boards to CI
1 parent a9664ef commit f8707ed

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

.travis.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ os:
99
- linux
1010

1111
python:
12-
- '2.7'
12+
- "2.7"
1313

1414
# Cache PlatformIO packages using Travis CI container-based infrastructure
1515
cache:
1616
directories:
17-
- '~/.platformio'
17+
- "~/.platformio"
1818

1919
env:
2020
global:
@@ -74,7 +74,21 @@ script:
7474
# Build current example
7575
- |
7676
if [ ! "${BUILD_UNIT_TESTS}" ]; then
77-
platformio ci --lib="." --board=uno --board="due" --board="leonardo" --board="micro" --board="nanoatmega328" --board="megaatmega2560"
77+
platformio ci --lib="." \
78+
--board="uno" \
79+
--board="due" \
80+
--board="zero" \
81+
--board="leonardo" \
82+
--board="micro" \
83+
--board="nanoatmega328" \
84+
--board="megaatmega2560" \
85+
--board="teensy2" \
86+
--board="teensy30" \
87+
--board="teensy31" \
88+
--board="teensy35" \
89+
--board="teensy36" \
90+
--board="teensy40" \
91+
--board="teensylc"
7892
fi
7993
8094
after_success:

0 commit comments

Comments
 (0)