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

Saving state early to take care of all cases

This commit is contained in:
Sankalp Kotewar 2022-11-21 08:45:08 +00:00 committed by GitHub
parent 8c4782cf33
commit 91d3f2deb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 14 deletions

11
dist/restore/index.js vendored
View file

@ -48987,6 +48987,12 @@ function run() {
required: true
});
const cacheKey = yield cache.restoreCache(cachePaths, primaryKey, restoreKeys);
//Check if user wants to save cache despite of failure in any previous job
const saveCache = core.getInput(constants_1.Inputs.SaveCacheOnAnyFailure);
if (saveCache === "yes") {
core.saveState(constants_1.State.SaveCache, saveCache);
core.info(`Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.`);
}
if (!cacheKey) {
if (core.getInput(constants_1.Inputs.StrictRestore) == "true") {
throw new Error(`Cache with the given input key ${primaryKey} is not found, hence exiting the workflow as the strict-restore requirement is not met.`);
@ -49005,11 +49011,6 @@ function run() {
throw new Error(`Restored cache key doesn't match the given input key ${primaryKey}, hence exiting the workflow as the strict-restore requirement is not met.`);
}
core.info(`Cache restored from key: ${cacheKey}`);
const saveCache = core.getInput(constants_1.Inputs.SaveCacheOnAnyFailure);
if (saveCache === "yes") {
core.saveState(constants_1.State.SaveCache, saveCache);
core.info(`Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.`);
}
}
catch (error) {
core.setFailed(error.message);

View file

@ -35,6 +35,15 @@ async function run(): Promise<void> {
restoreKeys
);
//Check if user wants to save cache despite of failure in any previous job
const saveCache = core.getInput(Inputs.SaveCacheOnAnyFailure);
if (saveCache === "yes") {
core.saveState(State.SaveCache, saveCache);
core.info(
`Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.`
);
}
if (!cacheKey) {
if (core.getInput(Inputs.StrictRestore) == "true") {
throw new Error(
@ -63,15 +72,6 @@ async function run(): Promise<void> {
);
}
core.info(`Cache restored from key: ${cacheKey}`);
const saveCache = core.getInput(Inputs.SaveCacheOnAnyFailure);
if (saveCache === "yes") {
core.saveState(State.SaveCache, saveCache);
core.info(
`Input save-cache-on-any-failure is set to yes, the cache will be saved despite of any failure in the build.`
);
}
} catch (error: unknown) {
core.setFailed((error as Error).message);
}