Do not fail build on error restoring artifact for marker

Instead, catch and report these errors before continuing.
This commit is contained in:
Daz DeBoer 2021-09-14 13:38:48 -06:00
parent cca55d0890
commit bd08e7b7cd
No known key found for this signature in database
GPG Key ID: DD6B9F0B06683D5D

View File

@ -72,17 +72,23 @@ export class GradleUserHomeCache extends AbstractCache {
const key = path.relative(this.getGradleUserHome(), artifactFile)
const cacheKey = `gradle-artifact-${key}`
try {
const restoreKey = await cache.restoreCache(
[artifactFile],
cacheKey
)
if (restoreKey) {
this.debug(`Restored ${cacheKey} from cache to ${artifactFile}`)
this.debug(
`Restored ${cacheKey} from cache to ${artifactFile}`
)
} else {
core.warning(
`Failed to restore from ${cacheKey} to ${artifactFile}`
)
}
} catch (error) {
core.warning(`Error restoring ${cacheKey}: ${error}`)
}
} else {
this.debug(
`Artifact file already exists, not restoring: ${artifactFile}`
@ -162,16 +168,15 @@ export class GradleUserHomeCache extends AbstractCache {
await cache.saveCache([artifactFile], cacheKey)
} catch (error) {
// Fail on validation errors or non-errors (the latter to keep Typescript happy)
if (
error instanceof cache.ValidationError ||
!(error instanceof Error)
) {
if (error instanceof cache.ValidationError) {
throw error
} else if (error instanceof cache.ReserveCacheError) {
// These are expected if the artifact is already cached
this.debug(error.message)
} else {
} else if (error instanceof Error) {
core.warning(error.message)
} else {
core.warning(`${error}`)
}
}