Merge pull request #34 from pimoroni/patch-mpy-cross

CI: Workaround silly mpy-cross build wart.
This commit is contained in:
Philip Howard 2025-01-14 13:44:27 +00:00 committed by GitHub
commit e569b73c5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,7 +30,7 @@ function micropython_clone {
function micropython_build_mpy_cross {
cd micropython/mpy-cross
ccache --zero-stats || true
CROSS_COMPILE="ccache " make
CROSS_COMPILE="ccache " USER_C_MODULES= make
ccache --show-stats || true
cd ../../
}
@ -62,4 +62,4 @@ function cmake_build {
ccache --show-stats || true
cd build-$BOARD_NAME
cp firmware.uf2 $RELEASE_FILE.uf2
}
}