Skip to content

Commit 399dbe8

Browse files
committed
ci: Add unix-ffi library when testing unix-ffi subdirectory.
Signed-off-by: Angus Gratton <[email protected]>
1 parent 8058b29 commit 399dbe8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/ci.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ function ci_build_packages_check_manifest {
3030
for file in $(find -name manifest.py); do
3131
echo "##################################################"
3232
echo "# Testing $file"
33-
python3 /tmp/micropython/tools/manifestfile.py --lib . --compile $file
33+
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
3438
done
3539
}
3640

0 commit comments

Comments
 (0)