ADFA-3253 | Skip llama asset bundling in debug CI builds#1071
ADFA-3253 | Skip llama asset bundling in debug CI builds#1071
Conversation
📝 WalkthroughWalkthroughThis PR adds conditional control over llama asset bundling via an environment variable and feature flag in the build configuration, allowing the build process to skip llama asset dependencies when the SKIP_LLAMA_ASSETS flag is enabled. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches
🧪 Generate unit tests (beta)
📝 Coding Plan
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment Tip You can enable review details to help with troubleshooting, context usage and more.Enable the |
chore: add configurable flag for llama asset dependencies
904d09a to
0f5441b
Compare
Description
This PR introduces a configurable
skipLlamaAssetsflag to prevent debug CI builds from triggering llama asset bundling tasks.The objective is to reduce CI build time by avoiding expensive llama asset generation during debug APK builds while preserving the existing behavior for release builds.
Details
skipLlamaAssetsflag inapp/build.gradle.ktsSKIP_LLAMA_ASSETS=truein the debug CI workflowTicket
ADFA-3253
Observation
Release build wiring remains unchanged to ensure bundled llama assets are still generated for release APK packaging. The change only affects debug CI builds.