Skip to content

Commit

Permalink
ci: Add build matrix for all boards
Browse files Browse the repository at this point in the history
Signed-off-by: Rahix <[email protected]>
  • Loading branch information
Rahix committed Jul 28, 2020
1 parent b57c9be commit 10da20a
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,23 @@ rust:
cache:
- cargo

addons:
apt:
packages:
- avr-libc
- binutils-avr
- gcc-avr

env:
matrix:
- BOARD=arduino-leonardo
- BOARD=arduino-uno
- BOARD=bigavr6
- BOARD=trinket

install:
- rustup component add rust-src

script:
- cargo build --verbose --all
- echo "Building board \"$BOARD\" ..."
- cd "boards/$BOARD" && cargo build --verbose --examples

0 comments on commit 10da20a

Please sign in to comment.