diff options
author | Damien George <damien@micropython.org> | 2021-07-17 23:05:49 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-07-17 23:55:25 +1000 |
commit | cbc8d5b61f0742e810ad45bd27d8daa11f3dbbf8 (patch) | |
tree | 026633fcd8debd840c96d31f6eebdb6f90ee8dde | |
parent | 74db526cf059d1bc30be38c28c36cf5d1156ae53 (diff) |
tools/ci.sh: Build unix dev variant as part of macOS CI.
To test BTstack build on macOS.
Signed-off-by: Damien George <damien@micropython.org>
-rwxr-xr-x | tools/ci.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/ci.sh b/tools/ci.sh index 815e72875..4ff4ba35b 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -515,6 +515,8 @@ function ci_unix_macos_build { #make ${MAKEOPTS} -C ports/unix deplibs make ${MAKEOPTS} -C ports/unix # check for additional compiler errors/warnings + make ${MAKEOPTS} -C ports/unix VARIANT=dev submodules + make ${MAKEOPTS} -C ports/unix VARIANT=dev make ${MAKEOPTS} -C ports/unix VARIANT=coverage submodules make ${MAKEOPTS} -C ports/unix VARIANT=coverage } |