cache/src/restore.ts

71 lines
2.1 KiB
TypeScript
Raw Normal View History

import * as cache from "@actions/cache";
2019-10-31 01:48:49 +07:00
import * as core from "@actions/core";
import { Events, Inputs, State } from "./constants";
2019-10-31 01:48:49 +07:00
import * as utils from "./utils/actionUtils";
2019-11-13 04:48:02 +07:00
async function run(): Promise<void> {
2019-10-31 01:48:49 +07:00
try {
2022-03-24 16:29:36 +07:00
if (!utils.isCacheFeatureAvailable()) {
2020-09-29 21:58:32 +07:00
utils.setCacheHitOutput(false);
return;
}
2019-10-31 01:48:49 +07: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-18 02:46:46 +07:00
} is not supported because it's not tied to a branch or tag ref.`
);
return;
}
2019-10-31 01:48:49 +07:00
const primaryKey = core.getInput(Inputs.Key, { required: true });
core.saveState(State.CachePrimaryKey, primaryKey);
2019-10-31 01:48:49 +07:00
2020-06-02 22:21:03 +07:00
const restoreKeys = utils.getInputAsArray(Inputs.RestoreKeys);
const cachePaths = utils.getInputAsArray(Inputs.Path, {
required: true
});
2019-10-31 01:48:49 +07:00
try {
const cacheKey = await cache.restoreCache(
cachePaths,
primaryKey,
restoreKeys
2019-10-31 01:48:49 +07:00
);
if (!cacheKey) {
core.info(
`Cache not found for input keys: ${[
primaryKey,
...restoreKeys
].join(", ")}`
2019-10-31 01:48:49 +07:00
);
return;
}
// Store the matched cache key
utils.setCacheState(cacheKey);
2019-10-31 01:48:49 +07:00
const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey);
2019-10-31 01:48:49 +07:00
utils.setCacheHitOutput(isExactKeyMatch);
core.info(`Cache restored from key: ${cacheKey}`);
2019-10-31 01:48:49 +07:00
} catch (error) {
if (error.name === cache.ValidationError.name) {
throw error;
} else {
utils.logWarning(error.message);
utils.setCacheHitOutput(false);
}
2019-10-31 01:48:49 +07:00
}
} catch (error) {
core.setFailed(error.message);
}
}
run();
export default run;