Skip to content

Commit 4ab0c01

Browse files
author
Alex J Lennon
committed
CI: ignore App Intents metadata processor in Swift warning check
Made-with: Cursor
1 parent be76fed commit 4ab0c01

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ios-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ jobs:
175175
if: success()
176176
run: |
177177
echo "⚠️ Checking for Swift compiler warnings..."
178-
if grep -i "warning:" build.log; then
178+
# Exclude App Intents metadata processor message (tooling, not Swift compiler)
179+
if grep -i "warning:" build.log | grep -v "appintentsmetadataprocessor\|No AppIntents.framework"; then
179180
echo "❌ Build produced Swift warnings (zero warnings required)"
180181
exit 1
181182
fi

0 commit comments

Comments
 (0)