Skip to content

Commit

Permalink
Fix Strip Ios Libraries Problem
Browse files Browse the repository at this point in the history
  • Loading branch information
emirthab committed Feb 17, 2024
1 parent 6f29617 commit b1130c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/compile_gdextension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,9 @@ runs:
elif [ "${{inputs.platform}}" == 'ios' ]; then
found_files=$(find -L ${{inputs.output_libs_path}} -type f -exec file {} + | grep ".dylib" | cut -d: -f1)
echo "Found files: $found_files"
strip $found_files
while IFS= read -r file; do
strip -u "$file"
done <<< "$found_files"
else
found_files=$(find -L ${{inputs.output_libs_path}} -type f -exec file {} + | grep "ELF" | cut -d: -f1)
echo "Found files: $found_files"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/gdextension_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ jobs:
macos-gdextension,
android-gdextension,
web-gdextension,
ios-gdextension,
]
name: 📦 Collect GDExtension binaries
runs-on: ubuntu-latest
Expand Down

0 comments on commit b1130c2

Please sign in to comment.