Does this use cache or do i need to specify following:
./gradlew --configuration-cache build
v
Vampire
04/18/2024, 7:49 AM
Please always consider channel and server topics in open communities. š
š 1
a
Adam S
04/18/2024, 10:13 AM
Gradle has two build cache options
⢠Build Cache
⢠Configuration Cache
It's quick and easy and usually safe to enable build cache (see the docs), and then
gradle/actions/setup-gradle@v3
should automatically start caching too, no config needed.
Configuration cache is more advanced, but can be more difficult/flaky.