diff --git a/tools/ci.sh b/tools/ci.sh index 730034e..761491c 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -30,7 +30,11 @@ function ci_build_packages_check_manifest { for file in $(find -name manifest.py); do echo "##################################################" echo "# Testing $file" - python3 /tmp/micropython/tools/manifestfile.py --lib . --compile $file + extra_args= + if [[ "$file" =~ "/unix-ffi/" ]]; then + extra_args="--unix-ffi" + fi + python3 /tmp/micropython/tools/manifestfile.py $extra_args --lib . --compile $file done }