diff options
author | Damien George <damien.p.george@gmail.com> | 2019-10-29 22:23:00 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-10-29 22:23:00 +1100 |
commit | 162016ad9c824df023e9870fd8d072e806d5ad96 (patch) | |
tree | 92493e23c2bfba284db907219b0e839441dd95f3 | |
parent | 943dd33b5fd36c54990ccebbd6fc30189d5373ac (diff) | |
download | micropython-162016ad9c824df023e9870fd8d072e806d5ad96.tar.gz micropython-162016ad9c824df023e9870fd8d072e806d5ad96.zip |
travis: Add job to build and test unix minimal port.
To test that unix minimal port builds, and that test-suite can run with
minimal features enabled.
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 5923cb2b96..0f57bc3fe8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -128,6 +128,13 @@ jobs: after_failure: - (cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff -u $testbase.exp $testbase.out; done) + # minimal unix port with tests + - stage: test + env: NAME="minimal unix port build and tests" + script: + - make ${MAKEOPTS} -C ports/unix minimal + - (cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython_minimal ./run-tests -e exception_chain -e self_type_check -e subclass_native_init -d basics) + # windows port via mingw - stage: test env: NAME="windows port build via mingw" |