Search Gradle plugins

io.github.sagar-viradiya.autobenchmark

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-alpha02 (latest)

Created 08 December 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-alpha02"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.sagar-viradiya:plugin:1.0.0-alpha02")
  }
}

apply(plugin = "io.github.sagar-viradiya.autobenchmark")

Using the plugins DSL:

plugins {
  id "io.github.sagar-viradiya.autobenchmark" version "1.0.0-alpha02"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.sagar-viradiya:plugin:1.0.0-alpha02"
  }
}

apply plugin: "io.github.sagar-viradiya.autobenchmark"

Learn how to apply plugins to subprojects