mirror of
https://github.com/DeterminateSystems/magic-nix-cache-action.git
synced 2024-12-26 01:12:17 +01:00
Dedupe text
This commit is contained in:
parent
9f35ea0aec
commit
f6084a76d3
3 changed files with 11 additions and 19 deletions
13
dist/index.js
generated
vendored
13
dist/index.js
generated
vendored
|
@ -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
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
15
src/index.ts
15
src/index.ts
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue