Disable testLatestDeps dependency cache (#5520)

This commit is contained in:
Trask Stalnaker 2022-03-07 21:06:02 -08:00 committed by GitHub
parent 2d04a70906
commit f318e08ead
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -45,4 +45,7 @@ jobs:
uses: gradle/gradle-build-action@v2
with:
arguments: test -PtestLatestDeps=true ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
cache-read-only: ${{ inputs.cache-read-only }}
# testLatestDeps dependencies bundle is over 2gb, which causes restoring it to fail with:
# RangeError [ERR_OUT_OF_RANGE]: The value of "length" is out of range.
# It must be >= 0 && <= 2147483647. Received 2299528741
cache-read-only: true