From 5976ea02a50ea76d72ada40db4cda186147fb412 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Tue, 23 Mar 2021 12:25:27 +0000 Subject: [PATCH] tools/ci.sh: Add CI for CMake USER_C_MODULE support. Builds the rp2 port against the example C and CXX modules. Signed-off-by: Phil Howard --- tools/ci.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/ci.sh b/tools/ci.sh index 53cf7f878b..0450611a10 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -181,6 +181,8 @@ function ci_rp2_build { make ${MAKEOPTS} -C mpy-cross git submodule update --init lib/pico-sdk lib/tinyusb make ${MAKEOPTS} -C ports/rp2 + make ${MAKEOPTS} -C ports/rp2 clean + make ${MAKEOPTS} -C ports/rp2 USER_C_MODULES=../../examples/usercmodule/micropython.cmake } ########################################################################################