summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Leech <andrew@alelec.net>2022-05-26 13:21:55 +1000
committerDamien George <damien@micropython.org>2022-06-03 14:35:52 +1000
commitb92e51efe740dc7704bbb0ea47c4fb12be25672d (patch)
tree272706be023fa089f9acd91661678846c2cf4eec
parentb7a39ad2d19a5be4b5a1a16c184e08be0d602b1a (diff)
tools/ci.sh: Add build of W5100S_EVB_PICO board to rp2 CI.
This exercises the inclusion of a number of libraries in the rp2 port including mbedtls and lwip. Signed-off-by: Andrew Leech <andrew@alelec.net>
-rwxr-xr-xtools/ci.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/ci.sh b/tools/ci.sh
index 67be9dad7..546f9781f 100755
--- a/tools/ci.sh
+++ b/tools/ci.sh
@@ -276,6 +276,8 @@ function ci_rp2_build {
make ${MAKEOPTS} -C ports/rp2
make ${MAKEOPTS} -C ports/rp2 clean
make ${MAKEOPTS} -C ports/rp2 USER_C_MODULES=../../examples/usercmodule/micropython.cmake
+ make ${MAKEOPTS} -C ports/rp2 BOARD=W5100S_EVB_PICO submodules
+ make ${MAKEOPTS} -C ports/rp2 BOARD=W5100S_EVB_PICO
}
########################################################################################