2014-04-14 19:05:47 +01:00
|
|
|
language: c
|
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
|
|
|
|
before_script:
|
2014-04-15 00:52:15 +01:00
|
|
|
- sudo add-apt-repository -y ppa:fkrull/deadsnakes
|
2014-04-15 03:13:48 +01:00
|
|
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
2014-04-15 03:02:17 +01:00
|
|
|
- sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
|
2014-04-15 00:52:15 +01:00
|
|
|
- sudo apt-get update -qq
|
2015-02-27 01:07:04 +00:00
|
|
|
- sudo apt-get install -y python3.4 python3 gcc-4.7 gcc-multilib gcc-arm-none-eabi qemu-system mingw32
|
2014-10-06 21:48:24 +01:00
|
|
|
# For teensy build
|
|
|
|
- sudo apt-get install realpath
|
2015-03-01 13:37:27 +00:00
|
|
|
# For coverage testing
|
|
|
|
- sudo pip install cpp-coveralls
|
2014-04-14 19:05:47 +01:00
|
|
|
|
|
|
|
script:
|
2015-01-13 12:39:29 +00:00
|
|
|
- make -C minimal test
|
2014-04-15 04:15:36 +01:00
|
|
|
- make -C unix CC=gcc-4.7
|
2014-04-15 04:36:25 +01:00
|
|
|
- make -C bare-arm
|
2015-01-09 00:03:21 +00:00
|
|
|
- make -C qemu-arm test
|
2014-04-15 04:36:25 +01:00
|
|
|
- make -C stmhal
|
2014-10-30 15:28:15 +00:00
|
|
|
- make -C stmhal -B MICROPY_PY_WIZNET5K=1 MICROPY_PY_CC3K=1
|
2014-08-05 15:04:11 +01:00
|
|
|
- make -C stmhal BOARD=STM32F4DISC
|
|
|
|
- make -C teensy
|
2015-02-06 14:35:48 +00:00
|
|
|
- make -C cc3200 BTARGET=application BTYPE=release
|
|
|
|
- make -C cc3200 BTARGET=bootloader BTYPE=release
|
2014-05-11 18:33:13 +01:00
|
|
|
- make -C windows CROSS_COMPILE=i586-mingw32msvc-
|
|
|
|
|
2015-03-01 13:37:27 +00:00
|
|
|
# run tests without coverage info
|
|
|
|
#- (cd tests && MICROPY_CPYTHON3=python3.4 ./run-tests)
|
|
|
|
#- (cd tests && MICROPY_CPYTHON3=python3.4 ./run-tests --emit native)
|
|
|
|
|
|
|
|
# run tests with coverage info
|
|
|
|
- make -C unix CC=gcc-4.7 coverage
|
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests)
|
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests --emit native)
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- (cd unix && coveralls --root .. --build-root . --gcov $(which gcov-4.7) --gcov-options '\-o build-coverage/' --include py --include extmod)
|
2014-04-15 12:52:59 +01:00
|
|
|
|
|
|
|
after_failure:
|
2014-06-25 22:05:53 +01:00
|
|
|
- (cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff -u $testbase.exp $testbase.out; done)
|
2015-01-12 15:50:08 +00:00
|
|
|
- (grep "FAIL" qemu-arm/build/console.out)
|