From 9fc6868fdf7336de37215144989a324ab4dd9eea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Fri, 29 Mar 2019 09:12:07 +0000 Subject: [PATCH] travis: install target --- .travis.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c8def31..a8ee9a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: rust + matrix: include: - rust: nightly @@ -8,4 +9,10 @@ matrix: - rust: nightly env: FEATURES='bkpt' script: - - "cargo build --target=thumbv7em-none-eabihf --no-default-features --features \"$FEATURES\"" + - "cargo build --target thumbv7em-none-eabihf --features \"$FEATURES\" $ARGS" + +install: + - rustup target add thumbv7em-none-eabihf + +notifications: + email: false