From 45164693adfc4d46bcd2d81aa5d1846b49beb364 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 16 Dec 2018 17:10:21 +0300 Subject: [PATCH] .travis.yml: Add build of unix port against mbedTLS. Change-Id: Id54281eb31f40ed10ed83a6d7eefdd456066adcd --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 7c5a8d44af..2a5d6f70e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -122,6 +122,14 @@ jobs: - make ${MAKEOPTS} -C ports/unix - make ${MAKEOPTS} -C ports/unix test + # unix port with mbedTLS + - stage: test + env: NAME="unix port with mbedTLS build and tests" + script: + - make ${MAKEOPTS} -C mpy-cross + - make ${MAKEOPTS} -C ports/unix MICROPY_SSL_MBEDTLS=1 MICROPY_SSL_AXTLS=0 + - make ${MAKEOPTS} -C ports/unix MICROPY_SSL_MBEDTLS=1 MICROPY_SSL_AXTLS=0 test + # unix nanbox - stage: test env: NAME="unix nanbox port build and tests"