27 lines
941 B
Plaintext
27 lines
941 B
Plaintext
// 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",
|
|
),
|
|
]
|