diff options
author | stijn <stinos@zoho.com> | 2014-05-11 19:33:13 +0200 |
---|---|---|
committer | stijn <stinos@zoho.com> | 2014-05-11 19:33:13 +0200 |
commit | 5f9ebd36cd46db16a1bd396d938e77913dac005d (patch) | |
tree | b03b9b60b497b81cfc5233a4a8f47351999db32f | |
parent | 2323ef9182f9b57b96c7b4e1b414c18591a00bff (diff) |
travis: Add cross-compilation of mingw port
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f0b5b561b..e6c12b967 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ 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 qemu-system + - sudo apt-get install -y python3.3 python3 gcc-4.7 gcc-arm-none-eabi qemu-system mingw32 script: - make -C unix CC=gcc-4.7 @@ -15,6 +15,8 @@ script: - make -C bare-arm - make -C qemu-arm - make -C stmhal + - make -C windows CROSS_COMPILE=i586-mingw32msvc- + - (cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests) after_failure: |