The two P0 benchmark APKs with a Dev Updater config

This commit is contained in:
iris committed 2026-09-05 22:33:09 -04:00
commit 5d7dee5d1f
4 files changed
+112

No files matched your search

+26
View File
@@ -0,0 +1,26 @@
// Read by Dev Updater: the body of the config, no outer parentheses.
//
// This repo holds nothing but two prebuilt APKs -- the phone benchmark
// gate from ai-app's RUST.md (P0) -- so each component's "build" is `true`:
// the APK is already under the Gradle-shaped path discovery looks in
// (`<module>/build/outputs/apk/<variant>/*.apk`), and there is nothing to
// run. A new build is delivered by committing a new APK here.
label: "AI Sessions bench",
components: [
// The Compose app's `bench` build type: com.example.aiapp.bench,
// installs beside the real app, opens an embedded fixture, no server.
Apk(
name: "compose-bench",
build: "true",
cwd: "compose",
),
// The iris transcript screen's bench build: dev.iris.android.demo.bench,
// same fixture, same scripted run, same report fields.
Apk(
name: "iris-bench",
build: "true",
cwd: "iris",
),
]