We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be76fed commit 4ab0c01Copy full SHA for 4ab0c01
.github/workflows/ios-build.yml
@@ -175,7 +175,8 @@ jobs:
175
if: success()
176
run: |
177
echo "⚠️ Checking for Swift compiler warnings..."
178
- if grep -i "warning:" build.log; then
+ # Exclude App Intents metadata processor message (tooling, not Swift compiler)
179
+ if grep -i "warning:" build.log | grep -v "appintentsmetadataprocessor\|No AppIntents.framework"; then
180
echo "❌ Build produced Swift warnings (zero warnings required)"
181
exit 1
182
fi
0 commit comments