Do not cache dependency jars individually

Unfortunately, doing this overloads the GitHub actions cache infrastructure
leading to failures and unpredictable results.
A later solution may re-implement artifact sharing for dependency jars
as well as jars within the `caches/jars-9` directory. But for now these
will be duplicated across each Gradle User Home cache entry.
This commit is contained in:
Daz DeBoer 2021-09-14 18:07:28 -06:00
parent decca791c5
commit fe64d05f86
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D

View file

@ -24,7 +24,6 @@ const CACHE_PATH = [
// TODO: Allow the user to override / tweak this set // TODO: Allow the user to override / tweak this set
const COMMON_ARTIFACT_PATHS = [ const COMMON_ARTIFACT_PATHS = [
'~/.gradle/caches/*/generated-gradle-jars/*.jar', '~/.gradle/caches/*/generated-gradle-jars/*.jar',
'~/.gradle/caches/modules-*/files-*/**/*.jar',
'~/.gradle/wrapper/dists/*/*/*.zip' '~/.gradle/wrapper/dists/*/*/*.zip'
] ]