Skip to content

Commit

Permalink
tools/ci.sh: Add unix-ffi library when testing unix-ffi subdirectory.
Browse files Browse the repository at this point in the history
Signed-off-by: Angus Gratton <[email protected]>
  • Loading branch information
projectgus authored and dpgeorge committed Feb 19, 2024
1 parent 8058b29 commit 4cc6706
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 4cc6706

Please sign in to comment.