travis: build unix targets first

because @pfalcon says so
pull/489/head
Andrew Scheller 2014-04-15 04:15:36 +01:00
rodzic 499d50be98
commit f0777d1c2c
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -10,10 +10,10 @@ before_script:
- sudo apt-get install -y python3.3 python3 gcc-4.7 gcc-arm-none-eabi
script:
- make -C unix CC=gcc-4.7
- make -C unix-cpy CC=gcc-4.7
- make -C bare-arm CC=gcc-4.7
- make -C stmhal CC=gcc-4.7
- make -C unix-cpy CC=gcc-4.7
- make -C unix CC=gcc-4.7
- cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests
after_failure: for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done