This message was deleted.
# performance
s
This message was deleted.
g
I don’t know of any restrictions, but there are ways to turn off the remote cache in a benchmark scenario
Copy code
// settings.gradle
buildCache {
  // read from a system property
  remote.enabled = providers.systemProperty("cache.remote.enabled").getOrElse("true").toBoolean()
}
Copy code
// Scenario file
no-remote-cache {
  // set the property for the build to read
  system-properties = {
    "cache.remote.enabled" = "false"
  }
  // or simply disable remote and local
  gradle-args = ["--no-build-cache"]
}