This message was deleted.
# performance
s
This message was deleted.
c
Use scans to compare both builds
p
If you want to shorten the developer feedback loop you might also be interested in https://docs.gradle.org/current/userguide/configuration_cache.html
r
how do I scan what intellij runs?
p
You can add
--scan
to the run configuration in IJ. Or you can configure your build to always publish scans.
Note that IDE sync will not publish scans anyway. Running tasks will (building, testing etc..)
t
Note that IDE sync will not publish scans anyway.
Actually not true if
gradleEnterprise.buildScan.publishAlways()
is set
👍 2