Skip to content

Commit

Permalink
adds native assets debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
craiglabenz committed Mar 11, 2024
1 parent 8980132 commit b2bc215
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions tool/ci_script_shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,38 @@ function ci_package () {
fi

popd

if [[ $PACKAGE_NAME == "mediapipe-task-text" ]]; then


pushd /Users/runner/work/flutter-mediapipe/flutter-mediapipe/packages/mediapipe-task-text/build/native_assets/macos/
echo `pwd`
ls -lah
popd

pushd /Users/runner/work/flutter-mediapipe/flutter-mediapipe/packages/mediapipe-task-text/example/build/
echo 'dry-run'
cat dryrun-build-log.txt
echo 'live-run'
cat live-run-build-log.txt
popd

pushd /Users/runner/work/flutter-mediapipe/flutter-mediapipe/packages/mediapipe-task-text/example/.dart_tool/native_assets_builder/e3c4d6cb53c6119f2a9c03f0f880d05f/out
echo `pwd`
ls -lah
echo 'build_output.yaml'
cat build_output.yaml
popd

pushd /Users/runner/work/flutter-mediapipe/flutter-mediapipe/packages/mediapipe-task-text/build/native_assets/macos
echo `pwd`
ls -lah
echo 'native_assets.yaml'
cat native_assets.yaml
popd

fi


done
}

0 comments on commit b2bc215

Please sign in to comment.