Dedupe text

This commit is contained in:
Graham Christensen 2024-05-07 09:57:42 -04:00
parent 9f35ea0aec
commit f6084a76d3
3 changed files with 11 additions and 19 deletions

13
dist/index.js generated vendored
View file

@ -94749,6 +94749,7 @@ var ENV_DAEMON_DIR = "MAGIC_NIX_CACHE_DAEMONDIR";
var STATE_DAEMONDIR = "MAGIC_NIX_CACHE_DAEMONDIR";
var STATE_STARTED = "MAGIC_NIX_CACHE_STARTED";
var STARTED_HINT = "true";
var NOOP_TEXT = "Magic Nix Cache is already running, this workflow job is in noop mode. Is the Magic Nix Cache in the workflow twice?";
var MagicNixCacheAction = class {
constructor() {
this.idslib = new IdsToolbox({
@ -94812,9 +94813,7 @@ var MagicNixCacheAction = class {
return;
}
if (this.noopMode) {
core.warning(
"Magic Nix Cache is already running, this workflow job is in noop mode."
);
core.warning(NOOP_TEXT);
return;
}
if (this.daemonStarted) {
@ -94937,9 +94936,7 @@ var MagicNixCacheAction = class {
}
async notifyAutoCache() {
if (this.noopMode) {
core.warning(
"Magic Nix Cache is already running, this workflow job is in noop mode."
);
core.debug(NOOP_TEXT);
return;
}
if (!this.daemonStarted) {
@ -94959,9 +94956,7 @@ var MagicNixCacheAction = class {
}
async tearDownAutoCache() {
if (this.noopMode) {
core.warning(
"Magic Nix Cache is already running, this workflow job is in noop mode."
);
core.warning(NOOP_TEXT);
return;
}
if (!this.daemonStarted) {

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View file

@ -19,6 +19,9 @@ const STATE_DAEMONDIR = "MAGIC_NIX_CACHE_DAEMONDIR";
const STATE_STARTED = "MAGIC_NIX_CACHE_STARTED";
const STARTED_HINT = "true";
const NOOP_TEXT =
"Magic Nix Cache is already running, this workflow job is in noop mode. Is the Magic Nix Cache in the workflow twice?";
class MagicNixCacheAction {
idslib: IdsToolbox;
private client: Got;
@ -98,9 +101,7 @@ class MagicNixCacheAction {
}
if (this.noopMode) {
actionsCore.warning(
"Magic Nix Cache is already running, this workflow job is in noop mode.",
);
actionsCore.warning(NOOP_TEXT);
return;
}
@ -258,9 +259,7 @@ class MagicNixCacheAction {
async notifyAutoCache(): Promise<void> {
if (this.noopMode) {
actionsCore.warning(
"Magic Nix Cache is already running, this workflow job is in noop mode.",
);
actionsCore.debug(NOOP_TEXT);
return;
}
@ -285,9 +284,7 @@ class MagicNixCacheAction {
async tearDownAutoCache(): Promise<void> {
if (this.noopMode) {
actionsCore.warning(
"Magic Nix Cache is already running, this workflow job is in noop mode.",
);
actionsCore.warning(NOOP_TEXT);
return;
}