cache/src/restore.ts

72 lines
2.1 KiB
TypeScript
Raw Normal View History

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