From 0db3a41f0285ecdebc14f520a031eb5e0c2a30c9 Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 5 Dec 2016 11:09:42 +1100 Subject: [PATCH] travis: Build STM32 F7 and L4 boards under Travis CI. The STM32 F7 and L4 boards use significantly different code to the F4 boards so it's important to test them with CI. To keep CI build times within a reasonable limit the STM32F4DISC board is no longer built, it's anyway very similar to the standard F4 build for PYBv1.0. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4acca3e10..1bac66fe0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,8 @@ script: - make -C qemu-arm test - make -C stmhal - make -C stmhal -B MICROPY_PY_WIZNET5K=1 MICROPY_PY_CC3K=1 - - make -C stmhal BOARD=STM32F4DISC + - make -C stmhal BOARD=STM32F7DISC + - make -C stmhal BOARD=STM32L476DISC - make -C teensy - make -C cc3200 BTARGET=application BTYPE=release - make -C cc3200 BTARGET=bootloader BTYPE=release