mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-05 10:12:55 +01:00
2ebdcff279
* Add "see more" link to GHE-not-supported warning I lived for several months thinking that support for caching action on GHE is just a matter of time, because it's such an important thing to have. Only today, I discovered that originally it was not planned at all. And that people already created some workarounds. So I hope that linking the issue from the warning message will save other people from what happened to me :-) * Update new GHE-not-supported message in tests * Update generated dist files
71 lines
2.4 KiB
TypeScript
71 lines
2.4 KiB
TypeScript
import * as cache from "@actions/cache";
|
|
import * as core from "@actions/core";
|
|
|
|
import { Events, Inputs, State } from "./constants";
|
|
import * as utils from "./utils/actionUtils";
|
|
|
|
// Catch and log any unhandled exceptions. These exceptions can leak out of the uploadChunk method in
|
|
// @actions/toolkit when a failed upload closes the file descriptor causing any in-process reads to
|
|
// throw an uncaught exception. Instead of failing this action, just warn.
|
|
process.on("uncaughtException", e => utils.logWarning(e.message));
|
|
|
|
async function run(): Promise<void> {
|
|
try {
|
|
if (utils.isGhes()) {
|
|
utils.logWarning(
|
|
"Cache action is not supported on GHES. See https://github.com/actions/cache/issues/505 for more details"
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (!utils.isValidEvent()) {
|
|
utils.logWarning(
|
|
`Event Validation Error: The event type ${
|
|
process.env[Events.Key]
|
|
} is not supported because it's not tied to a branch or tag ref.`
|
|
);
|
|
return;
|
|
}
|
|
|
|
const state = utils.getCacheState();
|
|
|
|
// Inputs are re-evaluted before the post action, so we want the original key used for restore
|
|
const primaryKey = core.getState(State.CachePrimaryKey);
|
|
if (!primaryKey) {
|
|
utils.logWarning(`Error retrieving key from state.`);
|
|
return;
|
|
}
|
|
|
|
if (utils.isExactKeyMatch(primaryKey, state)) {
|
|
core.info(
|
|
`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`
|
|
);
|
|
return;
|
|
}
|
|
|
|
const cachePaths = utils.getInputAsArray(Inputs.Path, {
|
|
required: true
|
|
});
|
|
|
|
try {
|
|
await cache.saveCache(cachePaths, primaryKey, {
|
|
uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize)
|
|
});
|
|
core.info(`Cache saved with key: ${primaryKey}`);
|
|
} catch (error) {
|
|
if (error.name === cache.ValidationError.name) {
|
|
throw error;
|
|
} else if (error.name === cache.ReserveCacheError.name) {
|
|
core.info(error.message);
|
|
} else {
|
|
utils.logWarning(error.message);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
utils.logWarning(error.message);
|
|
}
|
|
}
|
|
|
|
run();
|
|
|
|
export default run;
|