summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Scheller <github@loowis.durge.org>2014-04-15 03:02:17 +0100
committerAndrew Scheller <github@loowis.durge.org>2014-04-15 03:02:17 +0100
commit16fecc0a8470087dae1c7c7c8079382996fd7d00 (patch)
treef0458ea3c17769a2bb65a880abc44fba3569f3ba
parentc29a0ac56a916fe14d443086a2987c0bb65b8749 (diff)
Update .travis.yml
Check that the bare-arm, stmhal and unix-cpy ports at least remain compilable, even if we can only actually run tests against the unix port.
-rw-r--r--.travis.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 62dd656cc..4449d455a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,10 +4,14 @@ compiler:
before_script:
- sudo add-apt-repository -y ppa:fkrull/deadsnakes
+ - sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
- sudo apt-get update -qq
- - sudo apt-get install -y python3.3 python3
+ - sudo apt-get install -y python3.3 python3 gcc-arm-none-eabi
script:
+ - make -C bare-arm
+ - make -C stmhal
+ - make -C unix-cpy
- make -C unix
- cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests