cache/src/restore.ts

80 lines
2.8 KiB
TypeScript
Raw Normal View History

import * as cache from "@actions/cache";
2019-10-30 19:48:49 +01:00
import * as core from "@actions/core";
2022-11-25 10:16:56 +01:00
import { Events, Inputs, State, Variables } from "./constants";
2019-10-30 19:48:49 +01:00
import * as utils from "./utils/actionUtils";
2019-11-12 22:48:02 +01:00
async function run(): Promise<void> {
2019-10-30 19:48:49 +01:00
try {
if (!utils.isCacheFeatureAvailable()) {
2020-09-29 16:58:32 +02:00
utils.setCacheHitOutput(false);
return;
}
2019-10-30 19:48:49 +01:00
// Validate inputs, this can cause task failure
if (!utils.isValidEvent()) {
utils.logWarning(
`Event Validation Error: The event type ${
process.env[Events.Key]
2020-04-17 21:46:46 +02:00
} is not supported because it's not tied to a branch or tag ref.`
);
return;
}
2019-10-30 19:48:49 +01:00
const primaryKey = core.getInput(Inputs.Key, { required: true });
core.saveState(State.CachePrimaryKey, primaryKey);
2019-10-30 19:48:49 +01:00
2020-06-02 17:21:03 +02:00
const restoreKeys = utils.getInputAsArray(Inputs.RestoreKeys);
const cachePaths = utils.getInputAsArray(Inputs.Path, {
required: true
});
2019-10-30 19:48:49 +01:00
const cacheKey = await cache.restoreCache(
cachePaths,
primaryKey,
restoreKeys
);
2022-11-25 10:16:56 +01:00
//Check if user wants to save cache despite of failure in any previous job
const saveCache = core.getInput(Inputs.SaveOnAnyFailure);
if (saveCache === "yes") {
core.debug(`save cache input variable is set to yes`);
core.exportVariable(Variables.SaveCacheOnAnyFailure, saveCache);
core.info(
`Input Variable ${Variables.SaveCacheOnAnyFailure} is set to yes, the cache will be saved despite of any failure in the build.`
);
}
if (!cacheKey) {
2022-11-25 10:16:56 +01:00
if (core.getInput(Inputs.StrictRestore) == "yes") {
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.`
);
}
core.info(
`Cache not found for input keys: ${[
primaryKey,
...restoreKeys
].join(", ")}`
2019-10-30 19:48:49 +01:00
);
return;
}
// Store the matched cache key
utils.setCacheState(cacheKey);
2019-10-30 19:48:49 +01:00
const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey);
utils.setCacheHitOutput(isExactKeyMatch);
2022-11-25 10:16:56 +01:00
if (!isExactKeyMatch && core.getInput(Inputs.StrictRestore) == "yes") {
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}`);
2022-05-04 14:32:55 +02:00
} catch (error: unknown) {
2022-05-04 15:46:41 +02:00
core.setFailed((error as Error).message);
2019-10-30 19:48:49 +01:00
}
}
export default run;