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
|
2018-06-27 16:41:41 -04:00
|
|
|
git:
|
2018-10-13 12:51:29 -04:00
|
|
|
depth: 6
|
2018-09-18 15:38:12 -04:00
|
|
|
|
2018-10-10 20:24:45 -04:00
|
|
|
# Each item under 'env' is a separate Travis job to execute.
|
|
|
|
# They run in separate environments, so each one must take the time
|
|
|
|
# to clone the repository and submodules; to download and install SDKs,
|
|
|
|
# pip packages, and so forth. By gathering activities together in optimal
|
|
|
|
# ways, the "run time" and "total time" of the travis jobs can be minimized.
|
|
|
|
#
|
|
|
|
# Since at the time of writing Travis generally starts 5 or 6 jobs, the
|
|
|
|
# builds have been organized into 5 groups of *approximately* equal durations.
|
|
|
|
# Additionally, the jobs that need extra SDKs are also organized together.
|
|
|
|
#
|
|
|
|
# When adding new boards, take a look on the travis CI page
|
|
|
|
# https://travis-ci.org/adafruit/circuitpython to which build that installs
|
|
|
|
# that SDK is shortest and add it there. In the case of major re-organizations,
|
|
|
|
# just try to make the builds "about equal in run time"
|
2017-11-15 18:05:34 -05:00
|
|
|
env:
|
2018-10-10 18:43:23 -04:00
|
|
|
- TRAVIS_TESTS="unix docs translations" TRAVIS_BOARDS="feather_huzzah circuitplayground_express pca10056 pca10059 feather_nrf52832 feather_nrf52840_express" TRAVIS_SDK=arm:nrf:esp8266
|
2018-10-09 21:39:40 -04:00
|
|
|
- TRAVIS_BOARDS="metro_m0_express metro_m4_express pirkey_m0 trellis_m4_express trinket_m0" TRAVIS_SDK=arm
|
|
|
|
- TRAVIS_BOARDS="feather_radiofruit_zigbee gemma_m0 hallowing_m0_express itsybitsy_m0_express itsybitsy_m4_express" TRAVIS_SDK=arm
|
|
|
|
- TRAVIS_BOARDS="feather_m0_express_crickit feather_m0_rfm69 feather_m0_rfm9x feather_m4_express arduino_zero" TRAVIS_SDK=arm
|
|
|
|
- TRAVIS_BOARDS="circuitplayground_express_crickit feather_m0_adalogger feather_m0_basic feather_m0_express" TRAVIS_SDK=arm
|
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:
|
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:
|
2018-10-09 21:39:40 -04:00
|
|
|
- function var_search () { case "$1" in *$2*) true;; *) false;; esac; }
|
2016-01-17 07:12:53 -05:00
|
|
|
- sudo dpkg --add-architecture i386
|
2018-05-15 14:54:12 -04:00
|
|
|
|
2018-10-09 21:39:40 -04:00
|
|
|
- (! var_search "${TRAVIS_SDK-}" arm || (wget https://s3.amazonaws.com/adafruit-circuit-python/gcc-arm-embedded_7-2018q2-1~trusty1_amd64.deb && sudo dpkg -i gcc-arm-embedded*_amd64.deb))
|
2017-11-15 18:05:34 -05:00
|
|
|
|
2017-12-28 16:41:38 -05:00
|
|
|
# For nrf builds
|
2018-10-09 21:39:40 -04:00
|
|
|
- (! var_search "${TRAVIS_SDK-}" nrf || sudo ports/nrf/drivers/bluetooth/download_ble_stack.sh)
|
|
|
|
|
2018-06-10 15:20:32 -04:00
|
|
|
# For huzzah builds
|
2018-10-10 19:47:56 -04:00
|
|
|
- (! var_search "${TRAVIS_SDK-}" esp8266 || (wget https://github.com/jepler/esp-open-sdk/releases/download/2018-06-10/xtensa-lx106-elf-standalone.tar.gz && tar -C .. -xavf xtensa-lx106-elf-standalone.tar.gz))
|
|
|
|
- if var_search "${TRAVIS_SDK-}" esp8266 ; then PATH=$(readlink -f ../xtensa-lx106-elf/bin):$PATH; fi
|
2018-10-09 21:39:40 -04:00
|
|
|
|
2017-09-07 22:35:25 -04:00
|
|
|
# For coverage testing (upgrade is used to get latest urllib3 version)
|
2018-10-09 21:39:40 -04:00
|
|
|
- ([[ -z "$TRAVIS_TESTS" ]] || sudo apt-get install -y python3-pip)
|
|
|
|
- ([[ -z "$TRAVIS_TESTS" ]] || sudo pip install --upgrade cpp-coveralls)
|
|
|
|
- (! var_search "${TRAVIS_TESTS-}" docs || sudo pip install 'Sphinx<1.8.0' sphinx-rtd-theme recommonmark)
|
|
|
|
- (! var_search "${TRAVIS_TESTS-}" translations || sudo pip3 install polib)
|
|
|
|
|
2018-10-10 20:24:45 -04:00
|
|
|
# report some good version numbers to the build
|
2016-01-17 07:12:53 -05:00
|
|
|
- gcc --version
|
2018-10-09 21:39:40 -04:00
|
|
|
- (! var_search "${TRAVIS_SDK-}" elf || arm-none-eabi-gcc --version)
|
|
|
|
- (! var_search "${TRAVIS_SDK-}" esp8266 || xtensa-lx106-elf-gcc --version)
|
2016-01-17 07:12:53 -05:00
|
|
|
- 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'
|
2018-06-27 16:41:41 -04:00
|
|
|
- make -C mpy-cross -j2
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:mpy-cross\\r'
|
2017-11-15 18:05:34 -05:00
|
|
|
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo 'Building Adafruit binaries' && echo -en 'travis_fold:start:adafruit-bins\\r'
|
2018-10-09 21:39:40 -04:00
|
|
|
- (for board in $TRAVIS_BOARDS; do TRAVIS_BOARD=$board tools/build_adafruit_bins.sh || exit $?; done)
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:adafruit-bins\\r'
|
2017-11-15 18:05:34 -05:00
|
|
|
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo 'Building unix' && echo -en 'travis_fold:start:unix\\r'
|
2018-10-09 21:39:40 -04:00
|
|
|
- (! var_search "${TRAVIS_TESTS-}" unix || (make -C ports/unix deplibs -j2 && make -C ports/unix -j2 && make -C ports/unix coverage -j2))
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:unix\\r'
|
2017-11-15 18:05:34 -05:00
|
|
|
|
2015-03-01 08:37:27 -05:00
|
|
|
# run tests without coverage info
|
2018-04-02 09:04:22 -04:00
|
|
|
#- (cd tests && MICROPY_CPYTHON3=python3.4 ./run-tests -j1)
|
|
|
|
#- (cd tests && MICROPY_CPYTHON3=python3.4 ./run-tests -j1 --emit native)
|
2015-03-01 08:37:27 -05:00
|
|
|
|
|
|
|
# run tests with coverage info
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo 'Test all' && echo -en 'travis_fold:start:test_all\\r'
|
2018-10-09 21:39:40 -04:00
|
|
|
- (! var_search "${TRAVIS_TESTS-}" unix || (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1))
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:test_all\\r'
|
2017-11-15 18:05:34 -05:00
|
|
|
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo 'Test threads' && echo -en 'travis_fold:start:test_threads\\r'
|
2018-10-09 21:39:40 -04:00
|
|
|
- (! var_search "${TRAVIS_TESTS-}" unix || (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 -d thread))
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:test_threads\\r'
|
2017-11-15 18:05:34 -05:00
|
|
|
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo 'Testing with native' && echo -en 'travis_fold:start:test_native\\r'
|
2018-10-09 21:39:40 -04:00
|
|
|
- (! var_search "${TRAVIS_TESTS-}" unix || (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --emit native))
|
2017-10-25 14:01:43 -04:00
|
|
|
- echo -en 'travis_fold:end:test_native\\r'
|
2017-11-15 18:05:34 -05:00
|
|
|
|
|
|
|
- (echo 'Testing with mpy' && echo -en 'travis_fold:start:test_mpy\\r')
|
2018-10-09 21:39:40 -04:00
|
|
|
- (! var_search "${TRAVIS_TESTS-}" unix || (cd tests && MICROPY_CPYTHON3=python3.4 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --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
|
|
|
|
2018-02-27 18:38:28 -05:00
|
|
|
- (echo 'Building docs' && echo -en 'travis_fold:start:build_docs\\r')
|
2018-10-09 21:39:40 -04:00
|
|
|
- (! var_search "${TRAVIS_TESTS-}" docs || sphinx-build -E -W -b html . _build/html)
|
2018-02-27 18:38:28 -05:00
|
|
|
- echo -en 'travis_fold:end:build_docs\\r'
|
|
|
|
|
2018-07-31 19:53:54 -04:00
|
|
|
- (echo 'Building translations' && echo -en 'travis_fold:start:build_translations\\r')
|
2018-10-09 21:39:40 -04:00
|
|
|
- (! var_search "${TRAVIS_TESTS-}" translations || make check-translate)
|
2018-07-31 19:53:54 -04:00
|
|
|
- echo -en 'travis_fold:end:build_translations\\r'
|
2018-02-27 18:38:28 -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)
|