1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-06 06:17:48 +02:00

Covered no cache found case.

This commit is contained in:
Sankalp Kotewar 2022-11-17 19:10:53 +00:00 committed by GitHub
parent e39391011c
commit da7d0c0cb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View file

@ -48986,6 +48986,9 @@ function run() {
}); });
const cacheKey = yield cache.restoreCache(cachePaths, primaryKey, restoreKeys); const cacheKey = yield cache.restoreCache(cachePaths, primaryKey, restoreKeys);
if (!cacheKey) { if (!cacheKey) {
if (core.getInput(constants_1.Inputs.StrictRestore) == "true") {
throw new Error("Cache with given key not found, hence exiting the workflow as the strict-restore requirement is not met.");
}
core.info(`Cache not found for input keys: ${[ core.info(`Cache not found for input keys: ${[
primaryKey, primaryKey,
...restoreKeys ...restoreKeys
@ -48997,7 +49000,7 @@ function run() {
const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey); const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey);
utils.setCacheHitOutput(isExactKeyMatch); utils.setCacheHitOutput(isExactKeyMatch);
if (!isExactKeyMatch && core.getInput(constants_1.Inputs.StrictRestore) == "true") { if (!isExactKeyMatch && core.getInput(constants_1.Inputs.StrictRestore) == "true") {
throw new Error("Restored cache doesn't match the key in the input, hence exiting the workflow as strict-restore requirement is not met."); throw new Error("Restored cache doesn't match the key in the input, hence exiting the workflow as the strict-restore requirement is not met.");
} }
core.info(`Cache restored from key: ${cacheKey}`); core.info(`Cache restored from key: ${cacheKey}`);
} }

View file

@ -36,6 +36,11 @@ async function run(): Promise<void> {
); );
if (!cacheKey) { if (!cacheKey) {
if (core.getInput(Inputs.StrictRestore) == "true") {
throw new Error(
"Cache with given key not found, hence exiting the workflow as the strict-restore requirement is not met."
);
}
core.info( core.info(
`Cache not found for input keys: ${[ `Cache not found for input keys: ${[
primaryKey, primaryKey,
@ -54,7 +59,7 @@ async function run(): Promise<void> {
if (!isExactKeyMatch && core.getInput(Inputs.StrictRestore) == "true") { if (!isExactKeyMatch && core.getInput(Inputs.StrictRestore) == "true") {
throw new Error( throw new Error(
"Restored cache doesn't match the key in the input, hence exiting the workflow as strict-restore requirement is not met." "Restored cache doesn't match the key in the input, hence exiting the workflow as the strict-restore requirement is not met."
); );
} }
core.info(`Cache restored from key: ${cacheKey}`); core.info(`Cache restored from key: ${cacheKey}`);