2016-01-17 15:12:53 +03:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
2014-04-14 22:05:47 +04:00
|
|
|
language: c
|
|
|
|
compiler:
|
|
|
|
- gcc
|
2016-10-25 11:07:29 +03:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- "${HOME}/persist"
|
2014-04-14 22:05:47 +04:00
|
|
|
|
|
|
|
before_script:
|
2016-01-17 15:12:53 +03:00
|
|
|
# Extra CPython versions
|
|
|
|
# - sudo add-apt-repository -y ppa:fkrull/deadsnakes
|
|
|
|
# Extra gcc versions
|
|
|
|
# - 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
|
2016-01-17 15:12:53 +03:00
|
|
|
- sudo dpkg --add-architecture i386
|
2016-03-03 11:49:44 +03:00
|
|
|
- sudo apt-get update -qq || true
|
2016-09-09 17:14:16 +03:00
|
|
|
- sudo apt-get install -y python3 gcc-multilib pkg-config libffi-dev libffi-dev:i386 qemu-system gcc-mingw-w64
|
2016-05-26 13:06:22 +03:00
|
|
|
- sudo apt-get install -y --force-yes gcc-arm-none-eabi
|
2014-10-07 00:48:24 +04:00
|
|
|
# For teensy build
|
|
|
|
- sudo apt-get install realpath
|
2015-03-01 16:37:27 +03:00
|
|
|
# For coverage testing
|
|
|
|
- sudo pip install cpp-coveralls
|
2016-01-17 15:12:53 +03:00
|
|
|
- gcc --version
|
|
|
|
- arm-none-eabi-gcc --version
|
|
|
|
- python3 --version
|
2014-04-14 22:05:47 +04:00
|
|
|
|
|
|
|
script:
|
2016-09-05 10:33:56 +03:00
|
|
|
- make -C mpy-cross
|
2016-10-25 11:07:29 +03:00
|
|
|
- make -C minimal CROSS=1 build/firmware.bin
|
2016-10-25 11:07:29 +03:00
|
|
|
- ls -l minimal/build/firmware.bin
|
|
|
|
- tools/check_code_size.sh
|
|
|
|
- mkdir -p ${HOME}/persist
|
|
|
|
# Save new firmware for reference, but only if building a main branch, not a pull request
|
|
|
|
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then cp minimal/build/firmware.bin ${HOME}/persist/; fi'
|
2016-01-17 15:12:53 +03:00
|
|
|
- make -C unix deplibs
|
|
|
|
- make -C unix
|
|
|
|
- make -C unix nanbox
|
2014-04-15 07:36:25 +04:00
|
|
|
- make -C bare-arm
|
2015-01-09 03:03:21 +03:00
|
|
|
- make -C qemu-arm test
|
2014-04-15 07:36:25 +04:00
|
|
|
- make -C stmhal
|
2014-10-30 18:28:15 +03:00
|
|
|
- make -C stmhal -B MICROPY_PY_WIZNET5K=1 MICROPY_PY_CC3K=1
|
2016-12-05 03:09:42 +03:00
|
|
|
- make -C stmhal BOARD=STM32F7DISC
|
|
|
|
- make -C stmhal BOARD=STM32L476DISC
|
2014-08-05 18:04:11 +04:00
|
|
|
- make -C teensy
|
2015-02-06 17:35:48 +03:00
|
|
|
- make -C cc3200 BTARGET=application BTYPE=release
|
|
|
|
- make -C cc3200 BTARGET=bootloader BTYPE=release
|
2016-09-09 17:14:16 +03:00
|
|
|
- make -C windows CROSS_COMPILE=i686-w64-mingw32-
|
2014-05-11 21:33:13 +04:00
|
|
|
|
2015-03-01 16:37:27 +03: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
|
2016-01-17 15:12:53 +03:00
|
|
|
- make -C unix coverage
|
2015-03-01 16:37:27 +03:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests)
|
2016-07-09 18:53:40 +03:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests -d thread)
|
2015-03-01 16:37:27 +03:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests --emit native)
|
2016-12-22 03:27:35 +03:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests --via-mpy -d basics float)
|
2015-03-01 16:37:27 +03:00
|
|
|
|
2017-01-20 05:12:23 +03:00
|
|
|
# run coveralls coverage analysis (try to, even if some builds/tests failed)
|
2016-01-17 15:12:53 +03:00
|
|
|
- (cd unix && coveralls --root .. --build-root . --gcov $(which gcov) --gcov-options '\-o build-coverage/' --include py --include extmod)
|
2014-04-15 15:52:59 +04:00
|
|
|
|
|
|
|
after_failure:
|
2014-06-26 01:05:53 +04: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 18:50:08 +03:00
|
|
|
- (grep "FAIL" qemu-arm/build/console.out)
|