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
Truncate Gradle args when constructing cache key (gradle#71)
Cache keys have a hard limit of 512 characters, so we need to ensure that we don't generate a key longer than this.
- Remove excess whitespace
- Truncate to 400 characters
Fixesgradle#70
Include Gradle invocation arguments in cache keys (gradle#69)
This permits a new cache entry to be persisted when a subsequent Gradle invocation does more work that an earlier invocation.
Fixesgradle#68