You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building this project I frequently see the following log message:
❯ ./gradlew check
Configuration cache is an incubating feature.
Calculating task graph as configuration cache cannot be reused because an input to task ':plugins:build-parameters:jar' has changed.
What this means is that due to the application of the released build-parameters plugin to this project, the configuration cache can not be reused sometimes. It looks like the plugin we're building produces unstable outputs. Me first guess is that we're using collections that produce unstable outputs somewhere, e.g a HashMap.
The text was updated successfully, but these errors were encountered:
My first guess is that we're using collections that produce unstable outputs somewhere, e.g a HashMap.
... 🤔 But the code should not be regenerated. It should be UP-TO-DATE. Or do you also see the generation task running again even though you haven't changed anything in the parameter definition?
When building this project I frequently see the following log message:
What this means is that due to the application of the released build-parameters plugin to this project, the configuration cache can not be reused sometimes. It looks like the plugin we're building produces unstable outputs. Me first guess is that we're using collections that produce unstable outputs somewhere, e.g a HashMap.
The text was updated successfully, but these errors were encountered: