2016-01-17 12:12:53 +00:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
2014-04-14 18:05:47 +00:00
|
|
|
language: c
|
|
|
|
compiler:
|
|
|
|
- gcc
|
2016-10-25 08:07:29 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- "${HOME}/persist"
|
2014-04-14 18:05:47 +00:00
|
|
|
|
|
|
|
before_script:
|
2016-01-17 12:12:53 +00: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 02:02:17 +00:00
|
|
|
- sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
|
2016-01-17 12:12:53 +00:00
|
|
|
- sudo dpkg --add-architecture i386
|
2016-03-03 08:49:44 +00:00
|
|
|
- sudo apt-get update -qq || true
|
2016-09-09 14:14:16 +00:00
|
|
|
- sudo apt-get install -y python3 gcc-multilib pkg-config libffi-dev libffi-dev:i386 qemu-system gcc-mingw-w64
|
2016-05-26 10:06:22 +00:00
|
|
|
- sudo apt-get install -y --force-yes gcc-arm-none-eabi
|
2014-10-06 20:48:24 +00: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
|
2016-01-17 12:12:53 +00:00
|
|
|
- gcc --version
|
|
|
|
- arm-none-eabi-gcc --version
|
|
|
|
- python3 --version
|
2014-04-14 18:05:47 +00:00
|
|
|
|
|
|
|
script:
|
2016-09-05 07:33:56 +00:00
|
|
|
- make -C mpy-cross
|
2016-10-25 08:07:29 +00:00
|
|
|
- make -C minimal CROSS=1 build/firmware.bin
|
2016-10-25 08:07:29 +00: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 12:12:53 +00:00
|
|
|
- make -C unix deplibs
|
|
|
|
- make -C unix
|
|
|
|
- make -C unix nanbox
|
2014-04-15 03:36:25 +00:00
|
|
|
- make -C bare-arm
|
2015-01-09 00:03:21 +00:00
|
|
|
- make -C qemu-arm test
|
2014-04-15 03:36:25 +00:00
|
|
|
- make -C stmhal
|
2017-03-15 11:20:30 +00:00
|
|
|
- make -C stmhal BOARD=PYBV11 MICROPY_PY_WIZNET5K=1 MICROPY_PY_CC3K=1
|
2017-06-23 06:49:03 +00:00
|
|
|
- make -C stmhal BOARD=STM32F769DISC
|
2016-12-05 00:09:42 +00:00
|
|
|
- make -C stmhal BOARD=STM32L476DISC
|
2014-08-05 14:04:11 +00:00
|
|
|
- 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
|
2016-09-09 14:14:16 +00:00
|
|
|
- make -C windows CROSS_COMPILE=i686-w64-mingw32-
|
2014-05-11 17:33:13 +00:00
|
|
|
|
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
|
2016-01-17 12:12:53 +00:00
|
|
|
- make -C unix coverage
|
2015-03-01 13:37:27 +00:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests)
|
2016-07-09 15:53:40 +00:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests -d thread)
|
2015-03-01 13:37:27 +00:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests --emit native)
|
2016-12-22 00:27:35 +00:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../unix/micropython_coverage ./run-tests --via-mpy -d basics float)
|
2015-03-01 13:37:27 +00:00
|
|
|
|
2017-01-20 02:12:23 +00:00
|
|
|
# run coveralls coverage analysis (try to, even if some builds/tests failed)
|
2016-01-17 12:12:53 +00:00
|
|
|
- (cd unix && coveralls --root .. --build-root . --gcov $(which gcov) --gcov-options '\-o build-coverage/' --include py --include extmod)
|
2014-04-15 11:52:59 +00:00
|
|
|
|
|
|
|
after_failure:
|
2014-06-25 21:05:53 +00: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)
|