tools/ci.sh: Add unix-ffi library when testing unix-ffi subdirectory.

Signed-off-by: Angus Gratton <angus@redyak.com.au>
pull/805/head
Angus Gratton 2024-02-13 17:20:49 +11:00 zatwierdzone przez Damien George
rodzic 8058b2935b
commit 4cc67065dd
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -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
}