2014-04-14 22:05:47 +04:00
|
|
|
language: c
|
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
|
|
|
|
before_script:
|
2014-04-15 03:52:15 +04:00
|
|
|
- sudo add-apt-repository -y ppa:fkrull/deadsnakes
|
2014-04-15 06:13:48 +04:00
|
|
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
2014-04-15 06:02:17 +04:00
|
|
|
- sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
|
2014-04-15 03:52:15 +04:00
|
|
|
- sudo apt-get update -qq
|
2014-04-15 06:48:58 +04:00
|
|
|
- sudo apt-get install -y python3.3 python3 gcc-4.7 gcc-arm-none-eabi
|
2014-04-14 22:05:47 +04:00
|
|
|
|
|
|
|
script:
|
2014-04-15 07:15:36 +04:00
|
|
|
- make -C unix CC=gcc-4.7
|
|
|
|
- make -C unix-cpy CC=gcc-4.7
|
2014-04-15 07:36:25 +04:00
|
|
|
- make -C bare-arm
|
|
|
|
- make -C stmhal
|
2014-04-15 03:52:15 +04:00
|
|
|
- cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests
|
2014-04-15 05:29:59 +04:00
|
|
|
|
2014-04-15 14:25:36 +04:00
|
|
|
after_failure:
|
|
|
|
- cat tests/memoryerror.py.exp
|
|
|
|
- cat tests/memoryerror.py.out
|
|
|
|
- cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done
|