2016-01-17 14:12:53 +02:00
|
|
|
sudo: required
|
2017-01-12 17:09:10 -08:00
|
|
|
dist: trusty
|
2014-04-15 02:05:47 +08:00
|
|
|
language: c
|
|
|
|
compiler:
|
|
|
|
- gcc
|
2016-10-25 11:07:29 +03:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- "${HOME}/persist"
|
2014-04-15 02:05:47 +08:00
|
|
|
|
2017-04-20 14:04:06 -07:00
|
|
|
addons:
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2017-04-20 16:48:29 -07:00
|
|
|
- $(ls -d1 bin/*/* | tr "\n" ":")
|
2017-04-20 16:18:30 -07:00
|
|
|
target_paths: /
|
2017-04-20 14:04:06 -07:00
|
|
|
|
2017-01-06 10:59:20 -08: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 15:05:08 -07: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 10:59:20 -08:00
|
|
|
|
2014-04-15 02:05:47 +08:00
|
|
|
before_script:
|
2016-11-29 13:26:08 -08:00
|
|
|
- sudo add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
|
2016-01-17 14:12:53 +02:00
|
|
|
- sudo dpkg --add-architecture i386
|
2016-03-03 10:49:44 +02:00
|
|
|
- sudo apt-get update -qq || true
|
2016-09-09 16:14:16 +02:00
|
|
|
- sudo apt-get install -y python3 gcc-multilib pkg-config libffi-dev libffi-dev:i386 qemu-system gcc-mingw-w64
|
2016-11-29 13:26:08 -08:00
|
|
|
- sudo apt-get install -y --force-yes gcc-arm-embedded
|
2014-10-06 23:48:24 +03:00
|
|
|
# For teensy build
|
|
|
|
- sudo apt-get install realpath
|
2015-03-01 13:37:27 +00:00
|
|
|
# For coverage testing
|
2017-07-28 17:24:31 +03:00
|
|
|
# cpp-coveralls 0.4 conflicts with urllib3 preinstalled in Travis VM
|
|
|
|
- sudo pip install cpp-coveralls==0.3.12
|
2016-01-17 14:12:53 +02:00
|
|
|
- gcc --version
|
|
|
|
- arm-none-eabi-gcc --version
|
|
|
|
- python3 --version
|
2014-04-15 02:05:47 +08:00
|
|
|
|
|
|
|
script:
|
2016-10-24 12:12:22 -07:00
|
|
|
# Build mpy-cross first because other builds depend on it.
|
|
|
|
- make -C mpy-cross
|
2017-04-20 14:12:14 -07:00
|
|
|
- tools/build_adafruit_bins.sh
|
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
|
|
|
|
- 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 14:12:53 +02:00
|
|
|
- make -C unix deplibs
|
|
|
|
- make -C unix
|
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-05-11 19:33:13 +02: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 14:12:53 +02: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 16:53:40 +01: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 11:27:35 +11: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 13:12:23 +11:00
|
|
|
# run coveralls coverage analysis (try to, even if some builds/tests failed)
|
2017-06-20 18:09:38 -07:00
|
|
|
#- (cd unix && coveralls --root .. --build-root . --gcov $(which gcov) --gcov-options '\-o build-coverage/' --include py --include extmod)
|
2014-04-15 12:52:59 +01:00
|
|
|
|
|
|
|
after_failure:
|
2014-06-26 00:05:53 +03: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)
|