Set specific error in main

This commit is contained in:
Luc Perkins 2024-06-03 15:50:18 -07:00
parent 58113297de
commit 6a141808e0
No known key found for this signature in database
GPG Key ID: 16DB1108FB591835
3 changed files with 27 additions and 19 deletions

21
dist/index.js generated vendored
View File

@ -95534,8 +95534,8 @@ var MagicNixCacheAction = class extends DetSysAction {
await this.notifyAutoCache();
}
async post() {
if (!this.strictMode && this.mainErrored) {
this.exitWithWarning(`skipping post phase due to error in main phase`);
if (!this.strictMode && this.mainError) {
this.exitWithWarning(this.mainError);
} else {
if (this.noopMode) {
core.debug(TEXT_NOOP);
@ -95663,7 +95663,7 @@ var MagicNixCacheAction = class extends DetSysAction {
if (this.strictMode) {
reject(new Error(`error in notifyPromise: ${msg}`));
} else {
this.setMainErrored();
this.setMainError(msg);
this.exitWithWarning(`failed to start daemon: ${msg}`);
}
});
@ -95679,7 +95679,7 @@ var MagicNixCacheAction = class extends DetSysAction {
if (this.strictMode) {
reject(new Error(msg));
} else {
this.setMainErrored();
this.setMainError(msg);
this.exitWithWarning(`Failed to kill daemon: ${msg}`);
}
});
@ -95711,12 +95711,14 @@ var MagicNixCacheAction = class extends DetSysAction {
if (this.strictMode) {
core.setFailed(`Magic Nix Cache failed to start: ${(0,external_node_util_.inspect)(e)}`);
} else {
this.setMainErrored();
core.warning(`Error marking the workflow as started:`);
core.warning((0,external_node_util_.inspect)(e));
core.warning(
`Magic Nix Cache may not be running for this workflow.`
);
this.setMainError(
`Error starting the Magic Nix Cache: ${stringifyError(e)}`
);
}
}
}
@ -95775,13 +95777,14 @@ var MagicNixCacheAction = class extends DetSysAction {
}
// If the main phase errors, save the state for use in post.
// This matters only when strict mode is NOT set.
setMainErrored() {
core.saveState(STATE_ERROR_IN_MAIN, "true");
setMainError(msg) {
core.saveState(STATE_ERROR_IN_MAIN, msg);
}
// In the post phase, if the main phase errored, return `true` so that the
// phase can be skipped (with a warning).
get mainErrored() {
return core.getState(STATE_ERROR_IN_MAIN) === "true";
get mainError() {
const state = core.getState(STATE_ERROR_IN_MAIN);
return state !== "" ? state : void 0;
}
};
function main() {

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -107,8 +107,10 @@ class MagicNixCacheAction extends DetSysAction {
}
async post(): Promise<void> {
if (!this.strictMode && this.mainErrored) {
this.exitWithWarning(`skipping post phase due to error in main phase`);
// If strict mode is off and there was an error in main, such as the daemon not starting,
// then the post phase is skipped with a warning.
if (!this.strictMode && this.mainError) {
this.exitWithWarning(this.mainError);
} else {
if (this.noopMode) {
actionsCore.debug(TEXT_NOOP);
@ -270,7 +272,7 @@ class MagicNixCacheAction extends DetSysAction {
if (this.strictMode) {
reject(new Error(`error in notifyPromise: ${msg}`));
} else {
this.setMainErrored();
this.setMainError(msg);
this.exitWithWarning(`failed to start daemon: ${msg}`);
}
});
@ -288,7 +290,7 @@ class MagicNixCacheAction extends DetSysAction {
if (this.strictMode) {
reject(new Error(msg));
} else {
this.setMainErrored();
this.setMainError(msg);
this.exitWithWarning(`Failed to kill daemon: ${msg}`);
}
});
@ -328,12 +330,14 @@ class MagicNixCacheAction extends DetSysAction {
if (this.strictMode) {
actionsCore.setFailed(`Magic Nix Cache failed to start: ${inspect(e)}`);
} else {
this.setMainErrored();
actionsCore.warning(`Error marking the workflow as started:`);
actionsCore.warning(inspect(e));
actionsCore.warning(
`Magic Nix Cache may not be running for this workflow.`,
);
this.setMainError(
`Error starting the Magic Nix Cache: ${stringifyError(e)}`,
);
}
}
}
@ -402,14 +406,15 @@ class MagicNixCacheAction extends DetSysAction {
// If the main phase errors, save the state for use in post.
// This matters only when strict mode is NOT set.
private setMainErrored(): void {
actionsCore.saveState(STATE_ERROR_IN_MAIN, "true");
private setMainError(msg: string): void {
actionsCore.saveState(STATE_ERROR_IN_MAIN, msg);
}
// In the post phase, if the main phase errored, return `true` so that the
// phase can be skipped (with a warning).
private get mainErrored(): boolean {
return actionsCore.getState(STATE_ERROR_IN_MAIN) === "true";
private get mainError(): string | undefined {
const state = actionsCore.getState(STATE_ERROR_IN_MAIN);
return state !== "" ? state : undefined;
}
}