micropython/.travis.yml

25 lines
731 B
YAML
Raw Normal View History

2014-04-14 19:05:47 +01:00
language: c
compiler:
- gcc
before_script:
- sudo add-apt-repository -y ppa:fkrull/deadsnakes
- 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
2014-04-14 19:05:47 +01:00
script:
- make -C unix CC=gcc-4.7
- make -C unix-cpy CC=gcc-4.7
2014-04-15 04:36:25 +01:00
- make -C bare-arm
- make -C stmhal
- cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests
2014-04-15 11:25:36 +01:00
after_failure:
2014-04-15 11:56:57 +01:00
- pwd
- echo 'test'
2014-04-15 11:25:36 +01:00
- cat tests/memoryerror.py.exp
2014-04-15 11:56:57 +01:00
- (cat tests/memoryerror.py.out)
2014-04-15 11:25:36 +01:00
- cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done