We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8058b29 commit 399dbe8Copy full SHA for 399dbe8
tools/ci.sh
@@ -30,7 +30,11 @@ function ci_build_packages_check_manifest {
30
for file in $(find -name manifest.py); do
31
echo "##################################################"
32
echo "# Testing $file"
33
- python3 /tmp/micropython/tools/manifestfile.py --lib . --compile $file
+ extra_args=
34
+ if [[ "$file" =~ "/unix-ffi/" ]]; then
35
+ extra_args="--unix-ffi"
36
+ fi
37
+ python3 /tmp/micropython/tools/manifestfile.py $extra_args --lib . --compile $file
38
done
39
}
40
0 commit comments