From 719f1b2647c9fbd4a215fcea6b78d7d8d597953d Mon Sep 17 00:00:00 2001 From: John O'Reilly Date: Sun, 13 Sep 2026 15:52:53 +0100 Subject: [PATCH] Build :agents and :mcp-server in CI Neither module is reachable from assembleDebug or :composeApp:jvmTest, so nothing in CI was compiling them. The googleAdkKotlin 1.0 bump (#291) went green while leaving :agents broken against the new ADK server API, which is exactly the gap this closes. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01ReoMX8TjLpTkCocLiLVTuL --- .github/workflows/android.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 96dd3ee..f7e80cf 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -29,3 +29,6 @@ jobs: run: ./gradlew assembleDebug - name: Run Unit Tests run: ./gradlew :composeApp:jvmTest + # Neither module is reached by assembleDebug, so they need building explicitly + - name: Build JVM modules + run: ./gradlew :agents:build :mcp-server:build