-
-
Notifications
You must be signed in to change notification settings - Fork 466
fix: macOS appstore rejection #893
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR resolves macOS App Store rejection by refining the CI pipeline for faster, repeatable Flutter analysis and updating macOS entitlements for App Store compliance, plus adding a supportive wiki. File-Level Changes
Assessment against linked issues
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey there - I've reviewed your changes and they look great!
Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments
### Comment 1
<location> `.github/workflows/analysis.yml:32` </location>
<code_context>
+ - name: Cache pub dependencies
+ uses: actions/cache@v4
+ with:
+ path: |
+ ${{ env.PUB_CACHE }}
+ ~/.pub-cache
+ ${{ runner.tool_cache }}/flutter
+ key: ${{ runner.os }}-pub-${{ hashFiles('**/pubspec.lock') }}
+ restore-keys: |
</code_context>
<issue_to_address>
Including runner.tool_cache/flutter in pub cache may be unnecessary.
Caching this directory may unnecessarily increase cache size and restore times. Please verify if it's essential for dependency caching or should be handled separately.
</issue_to_address>
<suggested_fix>
<<<<<<< SEARCH
path: |
${{ env.PUB_CACHE }}
~/.pub-cache
${{ runner.tool_cache }}/flutter
=======
path: |
${{ env.PUB_CACHE }}
~/.pub-cache
>>>>>>> REPLACE
</suggested_fix>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
| path: | | ||
| ${{ env.PUB_CACHE }} | ||
| ~/.pub-cache | ||
| ${{ runner.tool_cache }}/flutter |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion (performance): Including runner.tool_cache/flutter in pub cache may be unnecessary.
Caching this directory may unnecessarily increase cache size and restore times. Please verify if it's essential for dependency caching or should be handled separately.
| path: | | |
| ${{ env.PUB_CACHE }} | |
| ~/.pub-cache | |
| ${{ runner.tool_cache }}/flutter | |
| path: | | |
| ${{ env.PUB_CACHE }} | |
| ~/.pub-cache |
Fixes #892
Summary by Sourcery
Improve CI performance with shallow checkout and caching, update macOS entitlements to resolve App Store rejection, and add supporting wiki documentation.
Bug Fixes:
CI:
Documentation: