io.github.sagar-viradiya.autobenchmark
Owner: Sagar Viradiya
Automate baseline profile on CI by running benchmark instrumentation tests on Firebase test lab and verifying benchmark result.
https://github.com/sagar-viradiya/auto-benchmark
Sources: https://github.com/sagar-viradiya/auto-benchmark
Version 1.0.0-alpha01
1.0.0-alpha01
Created 21 August 2023.
Automate baseline profile on CI by running benchmark instrumentation tests on Firebase test lab and verifying benchmark result.
Using the plugins DSL:
plugins {
id("io.github.sagar-viradiya.autobenchmark") version "1.0.0-alpha01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.sagar-viradiya:plugin:1.0.0-alpha01")
}
}
apply(plugin = "io.github.sagar-viradiya.autobenchmark")
Using the plugins DSL:
plugins {
id "io.github.sagar-viradiya.autobenchmark" version "1.0.0-alpha01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.sagar-viradiya:plugin:1.0.0-alpha01"
}
}
apply plugin: "io.github.sagar-viradiya.autobenchmark"