From 710bf34fbdc36fd3702e80af1f4552a24d471191 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Mon, 24 Oct 2016 11:59:50 -0700 Subject: [PATCH] Add atmel-samd boards to travis build. --- .travis.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 255f28af2f..13615d6982 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,10 @@ before_script: - python3 --version script: + - make -C atmel-samd BOARD=arduino_zero + - make -C atmel-samd BOARD=feather_m0_adalogger + - make -C atmel-samd BOARD=feather_m0_basic + - make -C atmel-samd BOARD=metro_m0_flash - make -C mpy-cross - make -C minimal test - make -C unix deplibs @@ -42,13 +46,6 @@ script: #- (cd tests && MICROPY_CPYTHON3=python3.4 ./run-tests) #- (cd tests && MICROPY_CPYTHON3=python3.4 ./run-tests --emit native) - # run tests with coverage info - - make -C unix coverage - - (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests) - - (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests -d thread) - - (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests --emit native) - - (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests --via-mpy -d basics) - after_success: - (cd unix && coveralls --root .. --build-root . --gcov $(which gcov) --gcov-options '\-o build-coverage/' --include py --include extmod)