summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Dmitrichenko <ilya@xively.com>2014-04-21 21:10:15 +0100
committerIlya Dmitrichenko <ilya@xively.com>2014-04-21 21:10:15 +0100
commit6820937892b2877ed246c41993d24aa6ca63950e (patch)
treea5c47562b7100e3d779b92b502f26fced1a5d280
parentb554bc5691ed077446db89c2132a6da78906a67a (diff)
travis: should test building qemu-arm as well.
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 54d18ecd5..f0b5b561b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,12 +7,13 @@ before_script:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
- sudo apt-get update -qq
- - sudo apt-get install -y python3.3 python3 gcc-4.7 gcc-arm-none-eabi
+ - sudo apt-get install -y python3.3 python3 gcc-4.7 gcc-arm-none-eabi qemu-system
script:
- make -C unix CC=gcc-4.7
- make -C unix-cpy CC=gcc-4.7
- make -C bare-arm
+ - make -C qemu-arm
- make -C stmhal
- (cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests)