Conversation
- Add multi-stage Dockerfile for Android APK build - Configure Flutter 3.38.4 and Android SDK 35 - Add .dockerignore for build optimization - Support for armeabi-v7a, arm64-v8a, x86_64 architectures - Update .gitignore to include Docker & APK related files
- Add code analysis job with formatting, analyze, and tests - Add Android build job with Docker and DockerHub integration - Add iOS build job with macOS runner - Configure GitHub Actions cache for faster builds
…irebase configuration and update configuration file creation steps
…odfile.lock before reinstalling
…hase and remove unused outputs from Android job
Owner
Author
|
I'm tired... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🚀 Summary
Implemented an automated CI pipeline in GitHub Actions for Flutter with code quality checks and reproducible builds for Android (via Docker) and iOS (via macOS runner).
The pipeline generates build artifacts (APK + unsigned IPA) on each run and publishes them to GitHub Actions artifacts for convenient download.
✨ What's Added / Changed
.github/workflows/main.yml) with 3 jobs: analyze → build-android + build-ios.macos-latestproducing an unsigned IPA for testing.flutter pub get→build_runner→ formatting verification (dart format --set-exit-if-changed) →flutter analyze→ tests with coverage.🛠 Build Process
push: falseandload: trueso the image stays on the runner fordocker create/docker cpAPK extraction.Runner.appinto an unsigned.ipafor testing.🧪 Verification