mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
3.6 KiB
3.6 KiB
Testing and CI Playbook
Use this matrix to choose the right verification depth for a change.
1) Baseline local verification order
Run in this order for routine changes:
./gradlew clean
./gradlew spotlessCheck
./gradlew spotlessApply
./gradlew detekt
./gradlew assembleDebug
./gradlew test
Notes:
- This order aligns with repository guidance in
AGENTS.mdand.github/copilot-instructions.md. - CI additionally runs
testDebugUnitTestin.github/workflows/reusable-check.yml.
2) Change-type matrix
docs-onlychanges:- Usually no Gradle run required.
- If you touched code examples or command docs, at least run
spotlessCheckif practical. - If you changed architecture, CI, validation commands, or agent workflow guidance, update the mirrored docs in
AGENTS.md,.github/copilot-instructions.md,GEMINI.md, anddocs/kmp-status.mdin the same slice.
UI text/resourcechanges:spotlessCheck,detekt,assembleDebug.
feature/commonMain logicchanges:spotlessCheck,detekt,test,assembleDebug.
navigation/DI wiringchanges (app graph, Koin module/wrapper changes):spotlessCheck,detekt,assembleDebug,test, plustestDebugUnitTestif available locally.- If touching any KMP module, also run the relevant
:compileKotlinJvmtask. CI validates all 22 KMP modules +desktop:test.
worker/service/backgroundchanges:spotlessCheck,detekt,assembleDebug,test, and targeted tests around WorkManager/service behavior.
BLE/networking/core repositorychanges:spotlessCheck,detekt,assembleDebug,test.
3) Flavor and instrumentation checks
Run these when relevant to map/provider/flavor-specific behavior:
./gradlew lintFdroidDebug lintGoogleDebug
./gradlew testFdroidDebug
./gradlew testGoogleDebug
./gradlew connectedAndroidTest
4) CI parity checks
Current reusable check workflow includes:
spotlessCheck detekttestDebugUnitTest testFdroidDebugUnitTest testGoogleDebugUnitTestkoverXmlReport app:koverXmlReportFdroidDebug app:koverXmlReportGoogleDebug- JVM smoke compile (all 16 core + all 6 feature modules +
desktop:test)::core:proto:compileKotlinJvm :core:common:compileKotlinJvm :core:model:compileKotlinJvm :core:repository:compileKotlinJvm :core:di:compileKotlinJvm :core:navigation:compileKotlinJvm :core:resources:compileKotlinJvm :core:datastore:compileKotlinJvm :core:database:compileKotlinJvm :core:domain:compileKotlinJvm :core:prefs:compileKotlinJvm :core:network:compileKotlinJvm :core:data:compileKotlinJvm :core:ble:compileKotlinJvm :core:service:compileKotlinJvm :core:ui:compileKotlinJvm :feature:intro:compileKotlinJvm :feature:messaging:compileKotlinJvm :feature:map:compileKotlinJvm :feature:node:compileKotlinJvm :feature:settings:compileKotlinJvm :feature:firmware:compileKotlinJvm :desktop:test assembleDebuglintDebugconnectedDebugAndroidTest(when emulator tests are enabled)
Reference: .github/workflows/reusable-check.yml
PR workflow note:
.github/workflows/pull-request.ymlignores docs-only changes (**.md,docs/**), so doc-only PRs may skip Android CI by design.- Android CI on PRs runs with
run_instrumented_tests: false; emulator tests are handled in other workflow contexts.
5) Practical guidance for agents
- Start with the smallest set that validates your touched area.
- Keep documentation continuously in sync with architecture, CI, and workflow changes; do not defer doc fixes to a later PR.
- If modifying cross-module contracts (routes, repository interfaces, DI graph), run the broader baseline.
- If unable to run full validation locally, report exactly what ran and what remains.