summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2021-05-18 13:20:02 +1000
committerDamien George <damien@micropython.org>2021-05-26 16:33:18 +1000
commitef16834887de02cbddf414b560e5a2af9cae4b16 (patch)
treeefa8e343be787f69f2a59e4dacbde49a3fea9c68 /tools
parentdc86e044761a132ddd7026f0f9555f958ba8046a (diff)
github/workflows: Add workflow to build and run unix port on MIPS.
This adds a coverage build and running of the test suite on a MIPS 32-bit big endian architecture. It uses the feature of qemu to execute foreign code as though it were native to the system (using qemu user mode). The code compiled for MIPS will run under the qemu VM, but all syscalls made by this code go to the host (Linux) system. See related #7268 and #7273. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ci.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/ci.sh b/tools/ci.sh
index c986c9fef..23e529e5e 100755
--- a/tools/ci.sh
+++ b/tools/ci.sh
@@ -292,6 +292,13 @@ CI_UNIX_OPTS_SYS_SETTRACE_STACKLESS=(
CFLAGS_EXTRA="-DMICROPY_STACKLESS=1 -DMICROPY_STACKLESS_STRICT=1 -DMICROPY_PY_SYS_SETTRACE=1"
)
+CI_UNIX_OPTS_QEMU_MIPS=(
+ CROSS_COMPILE=mips-linux-gnu-
+ VARIANT=coverage
+ MICROPY_STANDALONE=1
+ LDFLAGS_EXTRA="-static"
+)
+
function ci_unix_build_helper {
make ${MAKEOPTS} -C mpy-cross
make ${MAKEOPTS} -C ports/unix "$@" submodules
@@ -478,6 +485,26 @@ function ci_unix_macos_run_tests {
(cd tests && ./run-tests.py --exclude 'uasyncio_(basic|heaplock|lock|wait_task)' --exclude 'import_pkg7.py' --exclude 'urandom_basic.py')
}
+function ci_unix_qemu_mips_setup {
+ sudo apt-get update
+ sudo apt-get install gcc-mips-linux-gnu g++-mips-linux-gnu
+ sudo apt-get install qemu-user
+ qemu-mips --version
+}
+
+function ci_unix_qemu_mips_build {
+ # qemu-mips on GitHub Actions will seg-fault if not linked statically
+ ci_unix_build_helper "${CI_UNIX_OPTS_QEMU_MIPS[@]}"
+}
+
+function ci_unix_qemu_mips_run_tests {
+ # Issues with MIPS tests:
+ # - (i)listdir does not work, it always returns the empty list (it's an issue with the underlying C call)
+ # - ffi tests do not work
+ file ./ports/unix/micropython-coverage
+ (cd tests && MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-tests.py --exclude 'vfs_posix.py' --exclude 'ffi_(callback|float|float2).py')
+}
+
########################################################################################
# ports/windows