2016-01-17 07:12:53 -05:00
|
|
|
sudo: required
|
2017-01-12 20:09:10 -05:00
|
|
|
dist: trusty
|
2014-04-14 14:05:47 -04:00
|
|
|
language: c
|
|
|
|
compiler:
|
|
|
|
- gcc
|
2016-10-25 04:07:29 -04:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- "${HOME}/persist"
|
2014-04-14 14:05:47 -04:00
|
|
|
|
2017-04-20 17:04:06 -04:00
|
|
|
addons:
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2017-04-20 19:48:29 -04:00
|
|
|
- $(ls -d1 bin/*/* | tr "\n" ":")
|
2017-04-20 19:18:30 -04:00
|
|
|
target_paths: /
|
2017-04-20 17:04:06 -04:00
|
|
|
|
2017-01-06 13:59:20 -05:00
|
|
|
notifications:
|
|
|
|
webhooks:
|
|
|
|
urls:
|
|
|
|
- https://webhooks.gitter.im/e/c38b3bb3a3e131d955a1
|
|
|
|
on_success: change # options: [always|never|change] default: always
|
|
|
|
on_failure: always # options: [always|never|change] default: always
|
|
|
|
on_start: never # options: [always|never|change] default: always
|
2017-07-03 18:05:08 -04:00
|
|
|
webhooks:
|
|
|
|
urls:
|
|
|
|
- https://rosie-ci.ngrok.io/travis
|
|
|
|
on_success: always
|
|
|
|
on_failure: always
|
|
|
|
on_start: always
|
|
|
|
on_cancel: always
|
|
|
|
on_error: always
|
2017-01-06 13:59:20 -05:00
|
|
|
|
2014-04-14 14:05:47 -04:00
|
|
|
before_script:
|
2016-11-29 16:26:08 -05:00
|
|
|
- sudo add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
|
2016-01-17 07:12:53 -05:00
|
|
|
- sudo dpkg --add-architecture i386
|
2016-03-03 03:49:44 -05:00
|
|
|
- sudo apt-get update -qq || true
|
2016-09-09 10:14:16 -04:00
|
|
|
- sudo apt-get install -y python3 gcc-multilib pkg-config libffi-dev libffi-dev:i386 qemu-system gcc-mingw-w64
|
2016-11-29 16:26:08 -05:00
|
|
|
- sudo apt-get install -y --force-yes gcc-arm-embedded
|
2014-10-06 16:48:24 -04:00
|
|
|
# For teensy build
|
|
|
|
- sudo apt-get install realpath
|
2017-09-07 22:35:25 -04:00
|
|
|
# For coverage testing (upgrade is used to get latest urllib3 version)
|
|
|
|
- sudo pip install --upgrade cpp-coveralls
|
2016-01-17 07:12:53 -05:00
|
|
|
- gcc --version
|
|
|
|
- arm-none-eabi-gcc --version
|
|
|
|
- python3 --version
|
2014-04-14 14:05:47 -04:00
|
|
|
|
|
|
|
script:
|
2016-10-24 15:12:22 -04:00
|
|
|
# Build mpy-cross first because other builds depend on it.
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo 'Building mpy-cross' && echo -en 'travis_fold:start:mpy-cross\\r'
|
2016-10-24 15:12:22 -04:00
|
|
|
- make -C mpy-cross
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:mpy-cross\\r'
|
|
|
|
- echo 'Building Adafruit binaries' && echo -en 'travis_fold:start:adafruit-bins\\r'
|
2017-04-20 17:12:14 -04:00
|
|
|
- tools/build_adafruit_bins.sh
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:adafruit-bins\\r'
|
2017-09-06 00:09:13 -04:00
|
|
|
- make -C ports/minimal CROSS=1 build/firmware.bin
|
|
|
|
- ls -l ports/minimal/build/firmware.bin
|
2017-10-25 14:01:43 -04:00
|
|
|
#- mkdir -p ${HOME}/persist
|
2016-10-25 04:07:29 -04:00
|
|
|
# Save new firmware for reference, but only if building a main branch, not a pull request
|
2017-10-25 14:01:43 -04:00
|
|
|
#- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then cp ports/minimal/build/firmware.bin ${HOME}/persist/; fi'
|
|
|
|
- echo 'Building unix' && echo -en 'travis_fold:start:unix\\r'
|
2017-09-06 00:09:13 -04:00
|
|
|
- make -C ports/unix deplibs
|
|
|
|
- make -C ports/unix
|
2017-10-25 14:01:43 -04:00
|
|
|
- make -C ports/unix coverage
|
|
|
|
- echo -en 'travis_fold:end:unix\\r'
|
|
|
|
- echo 'Building qemu' && echo -en 'travis_fold:start:qemu\\r'
|
2017-09-06 00:09:13 -04:00
|
|
|
- make -C ports/qemu-arm test
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:qemu\\r'
|
2014-05-11 13:33:13 -04:00
|
|
|
|
2015-03-01 08:37:27 -05: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
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo 'Test all' && echo -en 'travis_fold:start:test_all\\r'
|
2017-09-06 00:09:13 -04:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests)
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:test_all\\r'
|
|
|
|
- echo 'Test threads' && echo -en 'travis_fold:start:test_threads\\r'
|
2017-09-06 00:09:13 -04:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -d thread)
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:test_threads\\r'
|
|
|
|
- echo 'Testing with native' && echo -en 'travis_fold:start:test_native\\r'
|
2017-09-06 00:09:13 -04:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests --emit native)
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:test_native\\r'
|
|
|
|
- echo 'Testing with mpy' && echo -en 'travis_fold:start:test_mpy\\r'
|
2017-09-06 00:09:13 -04:00
|
|
|
- (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests --via-mpy -d basics float)
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:test_mpy\\r'
|
2015-03-01 08:37:27 -05:00
|
|
|
|
2017-01-19 21:12:23 -05:00
|
|
|
# run coveralls coverage analysis (try to, even if some builds/tests failed)
|
2017-10-25 01:31:16 -04:00
|
|
|
#- (cd ports/unix && coveralls --root ../.. --build-root . --gcov $(which gcov) --gcov-options '\-o build-coverage/' --include py --include extmod)
|
2014-04-15 07:52:59 -04:00
|
|
|
|
|
|
|
after_failure:
|
2014-06-25 17: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)
|
2017-09-06 00:09:13 -04:00
|
|
|
- (grep "FAIL" ports/qemu-arm/build/console.out)
|