@nrwl/nx-cloud 15.0.2-beta.1 → 15.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/core/api/error-reporter.api.js +1 -36
- package/lib/core/api/run-group.api.js +1 -68
- package/lib/core/commands/clean-up-agents.js +1 -1
- package/lib/core/commands/clean-up-agents.js.map +1 -1
- package/lib/core/commands/upload-and-show-run-details.js +1 -1
- package/lib/core/commands/upload-and-show-run-details.js.map +1 -1
- package/lib/core/error/print-invalid-runner-error.d.ts +1 -0
- package/lib/core/error/print-invalid-runner-error.js +17 -0
- package/lib/core/error/print-invalid-runner-error.js.map +1 -0
- package/lib/core/runners/cloud-enabled/cloud-enabled-life-cycle.js +1 -109
- package/lib/core/runners/cloud-enabled/cloud-enabled.runner.js +1 -288
- package/lib/core/runners/cloud-enabled/cloud-enabled.runner.js.map +1 -1
- package/lib/core/runners/cloud-enabled/cloud-remote-cache.js +1 -113
- package/lib/core/runners/cloud-enabled/cloud-run.api.js +1 -167
- package/lib/core/runners/cloud-enabled/id-generator.js +1 -16
- package/lib/core/runners/distributed-agent/distributed-agent.api.js +1 -79
- package/lib/core/runners/distributed-agent/distributed-agent.impl.js +1 -263
- package/lib/core/runners/distributed-agent/distributed-agent.impl.js.map +1 -1
- package/lib/core/runners/distributed-execution/distributed-execution.api.js +1 -143
- package/lib/core/runners/distributed-execution/distributed-execution.runner.js +1 -220
- package/lib/core/runners/distributed-execution/distributed-execution.runner.js.map +1 -1
- package/lib/core/runners/distributed-execution/split-task-graph-into-stages.js +1 -37
- package/lib/core/runners/distributed-execution/task-graph-creator.js +1 -77
- package/lib/utilities/distributed-task-execution-detection.js +1 -1
- package/lib/utilities/distributed-task-execution-detection.js.map +1 -1
- package/lib/utilities/environment.d.ts +2 -0
- package/lib/utilities/environment.js +18 -10
- package/lib/utilities/environment.js.map +1 -1
- package/package.json +1 -1
- package/project.json +2 -1
|
@@ -1,263 +1 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.startAgent = void 0;
|
|
13
|
-
const child_process_1 = require("child_process");
|
|
14
|
-
const fs_1 = require("fs");
|
|
15
|
-
const stripJsonComments = require("strip-json-comments");
|
|
16
|
-
const create_unchanged_value_timeout_1 = require("../../../utilities/create-unchanged-value-timeout");
|
|
17
|
-
const environment_1 = require("../../../utilities/environment");
|
|
18
|
-
const metric_logger_1 = require("../../../utilities/metric-logger");
|
|
19
|
-
const waiter_1 = require("../../../utilities/waiter");
|
|
20
|
-
const print_run_group_error_1 = require("../../error/print-run-group-error");
|
|
21
|
-
const distributed_agent_api_1 = require("./distributed-agent.api");
|
|
22
|
-
const { output, workspaceRoot } = require('../../../utilities/nx-imports');
|
|
23
|
-
function executeTasks(options, api) {
|
|
24
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
25
|
-
let completedStatusCode = 0;
|
|
26
|
-
let apiResponse = null;
|
|
27
|
-
const failIfSameTasksAfterTimeout = (0, create_unchanged_value_timeout_1.createUnchangedValueTimeout)({
|
|
28
|
-
title: `No new messages received after ${environment_1.NO_MESSAGES_TIMEOUT / 1000} seconds`,
|
|
29
|
-
timeout: environment_1.NO_MESSAGES_TIMEOUT,
|
|
30
|
-
});
|
|
31
|
-
const waiter = new waiter_1.Waiter();
|
|
32
|
-
let completedTasks = [];
|
|
33
|
-
const startTime = new Date();
|
|
34
|
-
let executedAnyTasks = false;
|
|
35
|
-
while (true) {
|
|
36
|
-
if (environment_1.VERBOSE_LOGGING) {
|
|
37
|
-
output.note({
|
|
38
|
-
title: 'Fetching tasks...',
|
|
39
|
-
});
|
|
40
|
-
}
|
|
41
|
-
apiResponse = yield api.tasks(apiResponse ? apiResponse.executionId : null, completedStatusCode, completedTasks);
|
|
42
|
-
if (environment_1.VERBOSE_LOGGING) {
|
|
43
|
-
output.note({
|
|
44
|
-
title: 'API Response',
|
|
45
|
-
bodyLines: [
|
|
46
|
-
`completed: ${apiResponse.completed}`,
|
|
47
|
-
`status: ${apiResponse.status}`,
|
|
48
|
-
`retryDuring: ${apiResponse.retryDuring}`,
|
|
49
|
-
`executionId: ${apiResponse.executionId}`,
|
|
50
|
-
`number of tasks: ${apiResponse.tasks.length}`,
|
|
51
|
-
`error: ${apiResponse.criticalErrorMessage}`,
|
|
52
|
-
`maxParallel: ${apiResponse.maxParallel}`,
|
|
53
|
-
],
|
|
54
|
-
});
|
|
55
|
-
}
|
|
56
|
-
if (apiResponse.criticalErrorMessage) {
|
|
57
|
-
output.error({
|
|
58
|
-
title: 'Distributed Execution Terminated',
|
|
59
|
-
bodyLines: ['Error:', apiResponse.criticalErrorMessage],
|
|
60
|
-
});
|
|
61
|
-
process.exit(0);
|
|
62
|
-
}
|
|
63
|
-
// run group is completed but it might be a rerun
|
|
64
|
-
// we will try several times before going further and
|
|
65
|
-
// completed the response
|
|
66
|
-
// we only do it if we haven't executed any tasks
|
|
67
|
-
if ((apiResponse === null || apiResponse === void 0 ? void 0 : apiResponse.retryDuring) &&
|
|
68
|
-
(apiResponse === null || apiResponse === void 0 ? void 0 : apiResponse.retryDuring) !== 0 &&
|
|
69
|
-
!executedAnyTasks &&
|
|
70
|
-
new Date().getTime() - startTime.getTime() > apiResponse.retryDuring) {
|
|
71
|
-
yield waiter.wait();
|
|
72
|
-
continue;
|
|
73
|
-
}
|
|
74
|
-
if ((apiResponse === null || apiResponse === void 0 ? void 0 : apiResponse.status) !== undefined) {
|
|
75
|
-
if (apiResponse.status === 'RUN_GROUP_COMPLETED' ||
|
|
76
|
-
apiResponse.status === 'NO_FURTHER_TASKS_TO_RUN') {
|
|
77
|
-
return;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
else if (apiResponse.completed) {
|
|
81
|
-
return;
|
|
82
|
-
}
|
|
83
|
-
// if status is present that use the status instead of completed, otherwise use completed
|
|
84
|
-
failIfSameTasksAfterTimeout(apiResponse.tasks.map((t) => t.taskId).join(''));
|
|
85
|
-
if (!apiResponse.executionId) {
|
|
86
|
-
if (environment_1.VERBOSE_LOGGING) {
|
|
87
|
-
output.note({
|
|
88
|
-
title: 'Waiting...',
|
|
89
|
-
});
|
|
90
|
-
}
|
|
91
|
-
yield waiter.wait();
|
|
92
|
-
completedStatusCode = 0;
|
|
93
|
-
completedTasks = [];
|
|
94
|
-
continue;
|
|
95
|
-
}
|
|
96
|
-
waiter.reset();
|
|
97
|
-
executedAnyTasks = true;
|
|
98
|
-
const r = invokeTasksUsingRunMany(options, apiResponse.executionId, apiResponse.tasks, apiResponse.maxParallel);
|
|
99
|
-
completedStatusCode = r.completedStatusCode;
|
|
100
|
-
completedTasks = r.completedTasks;
|
|
101
|
-
}
|
|
102
|
-
});
|
|
103
|
-
}
|
|
104
|
-
function readCompletedTasks(options, distributedExecutionId) {
|
|
105
|
-
const errorMessage = `Command execution failed (distributed task execution: ${distributedExecutionId}). Tasks hashes haven\'t been recorded.`;
|
|
106
|
-
let completedTasks;
|
|
107
|
-
try {
|
|
108
|
-
const cacheDirectory = options.cacheDirectory || './node_modules/.cache/nx';
|
|
109
|
-
const taskHashesFile = `${cacheDirectory}/tasks-hashes-${distributedExecutionId}`;
|
|
110
|
-
completedTasks = JSON.parse((0, fs_1.readFileSync)(taskHashesFile).toString());
|
|
111
|
-
// remove it such that if the next command crashes we don't read an obsolete file
|
|
112
|
-
(0, fs_1.unlinkSync)(taskHashesFile);
|
|
113
|
-
}
|
|
114
|
-
catch (e) {
|
|
115
|
-
throw new Error(errorMessage);
|
|
116
|
-
}
|
|
117
|
-
if (completedTasks.length == 0) {
|
|
118
|
-
throw new Error(errorMessage);
|
|
119
|
-
}
|
|
120
|
-
return completedTasks;
|
|
121
|
-
}
|
|
122
|
-
function invokeTasksUsingRunMany(options, executionId, tasks, maxParallel) {
|
|
123
|
-
let completedStatusCode = 0;
|
|
124
|
-
const completedTasks = [];
|
|
125
|
-
for (const g of groupByTarget(tasks)) {
|
|
126
|
-
const config = g.configuration ? `--configuration=${g.configuration}` : ``;
|
|
127
|
-
const parallel = maxParallel > 1 ? ` --parallel --max-parallel=${maxParallel}` : ``;
|
|
128
|
-
// TODO use pnpx or yarn when needed
|
|
129
|
-
const command = `npx nx run-many --target=${g.target} ${config} --projects=${g.projects.join(',')} ${g.params}${parallel}`;
|
|
130
|
-
if (environment_1.VERBOSE_LOGGING) {
|
|
131
|
-
output.note({
|
|
132
|
-
title: `Executing: '${command}'`,
|
|
133
|
-
});
|
|
134
|
-
}
|
|
135
|
-
try {
|
|
136
|
-
(0, child_process_1.execSync)(command, {
|
|
137
|
-
stdio: ['ignore', 'inherit', 'inherit'],
|
|
138
|
-
env: Object.assign(Object.assign({}, process.env), { NX_CACHE_FAILURES: 'true', NX_CLOUD_DISTRIBUTED_EXECUTION_ID: executionId, NX_STREAM_OUTPUT: 'true', NX_PREFIX_OUTPUT: 'true' }),
|
|
139
|
-
});
|
|
140
|
-
completedTasks.push(...readCompletedTasks(options, executionId));
|
|
141
|
-
}
|
|
142
|
-
catch (e) {
|
|
143
|
-
if (e.status === environment_1.DISTRIBUTED_TASK_EXECUTION_INTERNAL_ERROR_STATUS_CODE) {
|
|
144
|
-
throw e;
|
|
145
|
-
}
|
|
146
|
-
else {
|
|
147
|
-
completedStatusCode = 1;
|
|
148
|
-
completedTasks.push(...readCompletedTasks(options, executionId));
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
return { completedStatusCode, completedTasks };
|
|
153
|
-
}
|
|
154
|
-
function groupByTarget(tasks) {
|
|
155
|
-
const res = [];
|
|
156
|
-
tasks.forEach((t) => {
|
|
157
|
-
const r = res.find((rr) => rr.target === t.target && rr.configuration === t.configuration);
|
|
158
|
-
if (r) {
|
|
159
|
-
r.projects.push(t.projectName);
|
|
160
|
-
}
|
|
161
|
-
else {
|
|
162
|
-
res.push({
|
|
163
|
-
target: t.target,
|
|
164
|
-
projects: [t.projectName],
|
|
165
|
-
params: t.params,
|
|
166
|
-
configuration: t.configuration,
|
|
167
|
-
});
|
|
168
|
-
}
|
|
169
|
-
});
|
|
170
|
-
return res;
|
|
171
|
-
}
|
|
172
|
-
function getAgentName() {
|
|
173
|
-
if (process.env.NX_AGENT_NAME !== undefined) {
|
|
174
|
-
return process.env.NX_AGENT_NAME;
|
|
175
|
-
}
|
|
176
|
-
else if (process.env.CIRCLECI !== undefined && process.env.CIRCLE_STAGE) {
|
|
177
|
-
return process.env.CIRCLE_STAGE;
|
|
178
|
-
}
|
|
179
|
-
else if (process.env.CIRCLECI !== undefined && process.env.CIRCLE_JOB) {
|
|
180
|
-
return process.env.CIRCLE_JOB;
|
|
181
|
-
}
|
|
182
|
-
else {
|
|
183
|
-
return `Agent ${Math.floor(Math.random() * 100000)}`;
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
function createAgentLockfileAndSetUpListeners(api, options, agentName) {
|
|
187
|
-
const cacheDirectory = options.cacheDirectory || './node_modules/.cache/nx';
|
|
188
|
-
const lockFileDirectory = `${cacheDirectory}/lockfiles`;
|
|
189
|
-
const lockFilePath = `${lockFileDirectory}/${agentName}.lock`;
|
|
190
|
-
if (!(0, fs_1.existsSync)(lockFileDirectory)) {
|
|
191
|
-
(0, fs_1.mkdirSync)(lockFileDirectory, { recursive: true });
|
|
192
|
-
}
|
|
193
|
-
// Check for other agents' lockfiles and warn if exist
|
|
194
|
-
const lockFiles = (0, fs_1.readdirSync)(lockFileDirectory);
|
|
195
|
-
if (lockFiles.length) {
|
|
196
|
-
// Check to make sure the current agent name is not in use (only 1/100000 ^ 2 chance of this)
|
|
197
|
-
if (lockFiles.includes(`${agentName}.lock`)) {
|
|
198
|
-
output.error({
|
|
199
|
-
title: 'Duplicate Agent ID Detected',
|
|
200
|
-
bodyLines: [
|
|
201
|
-
'We have detected another agent with this ID running in this workspace. This should not happen.',
|
|
202
|
-
'',
|
|
203
|
-
'End all currently running agents, run "npx nx-cloud clean-up-agents", and try again.',
|
|
204
|
-
],
|
|
205
|
-
});
|
|
206
|
-
process.exit(1);
|
|
207
|
-
}
|
|
208
|
-
output.warn({
|
|
209
|
-
title: 'Other Nx Cloud Agents Detected',
|
|
210
|
-
bodyLines: [
|
|
211
|
-
'We have detected other agents running in this workspace. This can cause unexpected behavior.',
|
|
212
|
-
'',
|
|
213
|
-
'This can also be a false positive caused by agents that did not shut down correctly.',
|
|
214
|
-
'If you believe this is the case, run "npx nx-cloud clean-up-agents".',
|
|
215
|
-
],
|
|
216
|
-
});
|
|
217
|
-
}
|
|
218
|
-
(0, fs_1.writeFileSync)(lockFilePath, '');
|
|
219
|
-
process.on('exit', (code) => {
|
|
220
|
-
cleanupAgentLockfile(lockFilePath, code);
|
|
221
|
-
});
|
|
222
|
-
process.on('SIGTERM', () => __awaiter(this, void 0, void 0, function* () {
|
|
223
|
-
yield api.completeRunGroupWithError('Agent was terminated via SIGTERM');
|
|
224
|
-
cleanupAgentLockfile(lockFilePath, 1);
|
|
225
|
-
}));
|
|
226
|
-
process.on('SIGINT', () => __awaiter(this, void 0, void 0, function* () {
|
|
227
|
-
yield api.completeRunGroupWithError('Agent was terminated via SIGINT');
|
|
228
|
-
cleanupAgentLockfile(lockFilePath, 1);
|
|
229
|
-
}));
|
|
230
|
-
}
|
|
231
|
-
function cleanupAgentLockfile(lockFilePath, code) {
|
|
232
|
-
if ((0, fs_1.existsSync)(lockFilePath)) {
|
|
233
|
-
(0, fs_1.unlinkSync)(lockFilePath);
|
|
234
|
-
process.exit(code);
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
function startAgent() {
|
|
238
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
239
|
-
const runGroup = (0, environment_1.getRunGroup)();
|
|
240
|
-
if (!runGroup) {
|
|
241
|
-
(0, print_run_group_error_1.printRunGroupError)();
|
|
242
|
-
return process.exit(1);
|
|
243
|
-
}
|
|
244
|
-
output.note({
|
|
245
|
-
title: 'Starting an agent for running Nx tasks',
|
|
246
|
-
});
|
|
247
|
-
const options = JSON.parse(stripJsonComments((0, fs_1.readFileSync)(`${workspaceRoot}/nx.json`).toString())).tasksRunnerOptions.default.options;
|
|
248
|
-
const agentName = getAgentName();
|
|
249
|
-
const api = new distributed_agent_api_1.DistributedAgentApi(options, runGroup, agentName);
|
|
250
|
-
createAgentLockfileAndSetUpListeners(api, options, agentName);
|
|
251
|
-
return executeTasks(options, api)
|
|
252
|
-
.then((res) => __awaiter(this, void 0, void 0, function* () {
|
|
253
|
-
yield (0, metric_logger_1.submitRunMetrics)(options);
|
|
254
|
-
return res;
|
|
255
|
-
}))
|
|
256
|
-
.catch((e) => __awaiter(this, void 0, void 0, function* () {
|
|
257
|
-
yield api.completeRunGroupWithError(`Critical Error in Agent: "${e.message}"`);
|
|
258
|
-
throw e;
|
|
259
|
-
}));
|
|
260
|
-
});
|
|
261
|
-
}
|
|
262
|
-
exports.startAgent = startAgent;
|
|
263
|
-
//# sourceMappingURL=distributed-agent.impl.js.map
|
|
1
|
+
const a6_0x1fcd=['options','getNxCacheDirectory','exit','We\x20have\x20detected\x20other\x20agents\x20running\x20in\x20this\x20workspace.\x20This\x20can\x20cause\x20unexpected\x20behavior.','retryDuring','NX_AGENT_NAME','../../../utilities/nx-imports','status:\x20','Duplicate\x20Agent\x20ID\x20Detected','submitRunMetrics','find','npx\x20nx\x20run-many\x20--target=','inherit','Waiter','DistributedAgentApi','next','defineProperty','getRunGroup','criticalErrorMessage','done','completed:\x20','then','readFileSync','__awaiter','error:\x20','completeRunGroupWithError','apply','RUN_GROUP_COMPLETED','warn','/nx.json','Waiting...','mkdirSync','printInvalidRunnerError','parse','No\x20new\x20messages\x20received\x20after\x20','number\x20of\x20tasks:\x20','Executing:\x20\x27','Distributed\x20Execution\x20Terminated','reset','retryDuring:\x20','existsSync','message','tasks','executionId:\x20','This\x20can\x20also\x20be\x20a\x20false\x20positive\x20caused\x20by\x20agents\x20that\x20did\x20not\x20shut\x20down\x20correctly.','configuration','printRunGroupError','taskId','throw','@nrwl/nx-cloud','Starting\x20an\x20agent\x20for\x20running\x20Nx\x20tasks','error','join','projects','__esModule','CIRCLE_STAGE','wait','CIRCLECI','status','We\x20have\x20detected\x20another\x20agent\x20with\x20this\x20ID\x20running\x20in\x20this\x20workspace.\x20This\x20should\x20not\x20happen.','map','/lockfiles','note','strip-json-comments','startAgent','tasksRunnerOptions','NO_MESSAGES_TIMEOUT','VERBOSE_LOGGING','DISTRIBUTED_TASK_EXECUTION_INTERNAL_ERROR_STATUS_CODE','SIGTERM','toString','completedTasks','SIGINT','Critical\x20Error\x20in\x20Agent:\x20\x22','readdirSync','If\x20you\x20believe\x20this\x20is\x20the\x20case,\x20run\x20\x22npx\x20nx-cloud\x20clean-up-agents\x22.','maxParallel','CIRCLE_JOB','.lock','env','projectName','value','--configuration=','params','Agent\x20','../../../utilities/environment','completedStatusCode','Other\x20Nx\x20Cloud\x20Agents\x20Detected','push','runner','true','executionId','getTime','assign','API\x20Response','length','completed','createUnchangedValueTimeout','ignore','target','./distributed-agent.api','Agent\x20was\x20terminated\x20via\x20SIGTERM','\x20seconds','writeFileSync','Error:','unlinkSync','\x20--projects=','Command\x20execution\x20failed\x20(distributed\x20task\x20execution:\x20','random','\x20--parallel\x20--max-parallel='];(function(_0xc65dbe,_0x1fcda0){const _0x54d58d=function(_0x457f6d){while(--_0x457f6d){_0xc65dbe['push'](_0xc65dbe['shift']());}};_0x54d58d(++_0x1fcda0);}(a6_0x1fcd,0x98));const a6_0x54d5=function(_0xc65dbe,_0x1fcda0){_0xc65dbe=_0xc65dbe-0x0;let _0x54d58d=a6_0x1fcd[_0xc65dbe];return _0x54d58d;};'use strict';var __awaiter=this&&this[a6_0x54d5('0x5b')]||function(_0x538c06,_0x33f151,_0x3af8c9,_0xef80a0){function _0x459845(_0x328c29){return _0x328c29 instanceof _0x3af8c9?_0x328c29:new _0x3af8c9(function(_0x2601b1){_0x2601b1(_0x328c29);});}return new(_0x3af8c9||(_0x3af8c9=Promise))(function(_0xd84f19,_0x2d6533){function _0x317be5(_0x1d55d8){try{_0x94b7c4(_0xef80a0['next'](_0x1d55d8));}catch(_0x31331c){_0x2d6533(_0x31331c);}}function _0x58f57a(_0xcf4bb){try{_0x94b7c4(_0xef80a0[a6_0x54d5('0x6')](_0xcf4bb));}catch(_0x4381d9){_0x2d6533(_0x4381d9);}}function _0x94b7c4(_0x1f4394){_0x1f4394[a6_0x54d5('0x57')]?_0xd84f19(_0x1f4394['value']):_0x459845(_0x1f4394[a6_0x54d5('0x27')])[a6_0x54d5('0x59')](_0x317be5,_0x58f57a);}_0x94b7c4((_0xef80a0=_0xef80a0[a6_0x54d5('0x5e')](_0x538c06,_0x33f151||[]))[a6_0x54d5('0x53')]());});};Object[a6_0x54d5('0x54')](exports,a6_0x54d5('0xc'),{'value':!![]});exports[a6_0x54d5('0x16')]=void 0x0;const child_process_1=require('child_process');const fs_1=require('fs');const stripJsonComments=require(a6_0x54d5('0x15'));const create_unchanged_value_timeout_1=require('../../../utilities/create-unchanged-value-timeout');const environment_1=require(a6_0x54d5('0x2b'));const metric_logger_1=require('../../../utilities/metric-logger');const waiter_1=require('../../../utilities/waiter');const print_run_group_error_1=require('../../error/print-run-group-error');const distributed_agent_api_1=require(a6_0x54d5('0x3a'));const print_invalid_runner_error_1=require('../../error/print-invalid-runner-error');const {output,workspaceRoot}=require(a6_0x54d5('0x4a'));function executeTasks(_0x4790f2,_0x5186e0){return __awaiter(this,void 0x0,void 0x0,function*(){let _0x11f859=0x0;let _0x5038e3=null;const _0x4204f2=(0x0,create_unchanged_value_timeout_1[a6_0x54d5('0x37')])({'title':a6_0x54d5('0x66')+environment_1[a6_0x54d5('0x18')]/0x3e8+a6_0x54d5('0x3c'),'timeout':environment_1[a6_0x54d5('0x18')]});const _0x4542e1=new waiter_1[(a6_0x54d5('0x51'))]();let _0x2bda6b=[];const _0x1b4c53=new Date();let _0x12c428=![];while(!![]){if(environment_1[a6_0x54d5('0x19')]){output['note']({'title':'Fetching\x20tasks...'});}_0x5038e3=yield _0x5186e0[a6_0x54d5('0x0')](_0x5038e3?_0x5038e3[a6_0x54d5('0x31')]:null,_0x11f859,_0x2bda6b);if(environment_1[a6_0x54d5('0x19')]){output[a6_0x54d5('0x14')]({'title':a6_0x54d5('0x34'),'bodyLines':[a6_0x54d5('0x58')+_0x5038e3['completed'],a6_0x54d5('0x4b')+_0x5038e3[a6_0x54d5('0x10')],a6_0x54d5('0x6b')+_0x5038e3[a6_0x54d5('0x48')],a6_0x54d5('0x1')+_0x5038e3[a6_0x54d5('0x31')],a6_0x54d5('0x67')+_0x5038e3[a6_0x54d5('0x0')][a6_0x54d5('0x35')],a6_0x54d5('0x5c')+_0x5038e3[a6_0x54d5('0x56')],'maxParallel:\x20'+_0x5038e3[a6_0x54d5('0x22')]]});}if(_0x5038e3[a6_0x54d5('0x56')]){output['error']({'title':a6_0x54d5('0x69'),'bodyLines':[a6_0x54d5('0x3e'),_0x5038e3[a6_0x54d5('0x56')]]});process[a6_0x54d5('0x46')](0x0);}if((_0x5038e3===null||_0x5038e3===void 0x0?void 0x0:_0x5038e3['retryDuring'])&&(_0x5038e3===null||_0x5038e3===void 0x0?void 0x0:_0x5038e3['retryDuring'])!==0x0&&!_0x12c428&&new Date()[a6_0x54d5('0x32')]()-_0x1b4c53[a6_0x54d5('0x32')]()>_0x5038e3[a6_0x54d5('0x48')]){yield _0x4542e1[a6_0x54d5('0xe')]();continue;}if((_0x5038e3===null||_0x5038e3===void 0x0?void 0x0:_0x5038e3['status'])!==undefined){if(_0x5038e3['status']===a6_0x54d5('0x5f')||_0x5038e3[a6_0x54d5('0x10')]==='NO_FURTHER_TASKS_TO_RUN'){return;}}else if(_0x5038e3[a6_0x54d5('0x36')]){return;}_0x4204f2(_0x5038e3['tasks'][a6_0x54d5('0x12')](_0x31df43=>_0x31df43[a6_0x54d5('0x5')])[a6_0x54d5('0xa')](''));if(!_0x5038e3[a6_0x54d5('0x31')]){if(environment_1[a6_0x54d5('0x19')]){output[a6_0x54d5('0x14')]({'title':a6_0x54d5('0x62')});}yield _0x4542e1[a6_0x54d5('0xe')]();_0x11f859=0x0;_0x2bda6b=[];continue;}_0x4542e1[a6_0x54d5('0x6a')]();_0x12c428=!![];const _0x237d41=invokeTasksUsingRunMany(_0x4790f2,_0x5038e3[a6_0x54d5('0x31')],_0x5038e3[a6_0x54d5('0x0')],_0x5038e3[a6_0x54d5('0x22')]);_0x11f859=_0x237d41[a6_0x54d5('0x2c')];_0x2bda6b=_0x237d41[a6_0x54d5('0x1d')];}});}function readCompletedTasks(_0x5bda1a,_0x359c6d){const _0x3939c8=a6_0x54d5('0x41')+_0x359c6d+').\x20Tasks\x20hashes\x20haven\x27t\x20been\x20recorded.';let _0x1f1349;try{const _0x3b35a5=(0x0,environment_1[a6_0x54d5('0x45')])(_0x5bda1a);const _0x3d1d8a=_0x3b35a5+'/tasks-hashes-'+_0x359c6d;_0x1f1349=JSON['parse']((0x0,fs_1[a6_0x54d5('0x5a')])(_0x3d1d8a)[a6_0x54d5('0x1c')]());(0x0,fs_1[a6_0x54d5('0x3f')])(_0x3d1d8a);}catch(_0xd99c7c){throw new Error(_0x3939c8);}if(_0x1f1349[a6_0x54d5('0x35')]==0x0){throw new Error(_0x3939c8);}return _0x1f1349;}function invokeTasksUsingRunMany(_0x473683,_0x213518,_0x58ec82,_0x6eea39){let _0x65b739=0x0;const _0x3345f5=[];for(const _0xd9d4fe of groupByTarget(_0x58ec82)){const _0x1f9e89=_0xd9d4fe[a6_0x54d5('0x3')]?a6_0x54d5('0x28')+_0xd9d4fe[a6_0x54d5('0x3')]:'';const _0x40c2b7=_0x6eea39>0x1?a6_0x54d5('0x43')+_0x6eea39:'';const _0x4a9a10=a6_0x54d5('0x4f')+_0xd9d4fe['target']+'\x20'+_0x1f9e89+a6_0x54d5('0x40')+_0xd9d4fe['projects']['join'](',')+'\x20'+_0xd9d4fe[a6_0x54d5('0x29')]+_0x40c2b7;if(environment_1['VERBOSE_LOGGING']){output[a6_0x54d5('0x14')]({'title':a6_0x54d5('0x68')+_0x4a9a10+'\x27'});}try{(0x0,child_process_1['execSync'])(_0x4a9a10,{'stdio':[a6_0x54d5('0x38'),a6_0x54d5('0x50'),'inherit'],'env':Object[a6_0x54d5('0x33')](Object[a6_0x54d5('0x33')]({},process['env']),{'NX_CACHE_FAILURES':a6_0x54d5('0x30'),'NX_CLOUD_DISTRIBUTED_EXECUTION_ID':_0x213518,'NX_STREAM_OUTPUT':'true','NX_PREFIX_OUTPUT':'true'})});_0x3345f5[a6_0x54d5('0x2e')](...readCompletedTasks(_0x473683,_0x213518));}catch(_0x5f083b){if(_0x5f083b[a6_0x54d5('0x10')]===environment_1[a6_0x54d5('0x1a')]){throw _0x5f083b;}else{_0x65b739=0x1;_0x3345f5['push'](...readCompletedTasks(_0x473683,_0x213518));}}}return{'completedStatusCode':_0x65b739,'completedTasks':_0x3345f5};}function groupByTarget(_0x4ee6d4){const _0x19a23a=[];_0x4ee6d4['forEach'](_0xa4c1ea=>{const _0x477a29=_0x19a23a[a6_0x54d5('0x4e')](_0x160c17=>_0x160c17[a6_0x54d5('0x39')]===_0xa4c1ea[a6_0x54d5('0x39')]&&_0x160c17[a6_0x54d5('0x3')]===_0xa4c1ea[a6_0x54d5('0x3')]);if(_0x477a29){_0x477a29[a6_0x54d5('0xb')]['push'](_0xa4c1ea[a6_0x54d5('0x26')]);}else{_0x19a23a[a6_0x54d5('0x2e')]({'target':_0xa4c1ea[a6_0x54d5('0x39')],'projects':[_0xa4c1ea[a6_0x54d5('0x26')]],'params':_0xa4c1ea[a6_0x54d5('0x29')],'configuration':_0xa4c1ea[a6_0x54d5('0x3')]});}});return _0x19a23a;}function getAgentName(){if(process[a6_0x54d5('0x25')][a6_0x54d5('0x49')]!==undefined){return process['env'][a6_0x54d5('0x49')];}else if(process[a6_0x54d5('0x25')]['CIRCLECI']!==undefined&&process[a6_0x54d5('0x25')][a6_0x54d5('0xd')]){return process['env'][a6_0x54d5('0xd')];}else if(process[a6_0x54d5('0x25')][a6_0x54d5('0xf')]!==undefined&&process[a6_0x54d5('0x25')][a6_0x54d5('0x23')]){return process[a6_0x54d5('0x25')][a6_0x54d5('0x23')];}else{return a6_0x54d5('0x2a')+Math['floor'](Math[a6_0x54d5('0x42')]()*0x186a0);}}function createAgentLockfileAndSetUpListeners(_0x106efa,_0x8ef844,_0x1db8e4){const _0xcbdb41=(0x0,environment_1['getNxCacheDirectory'])(_0x8ef844);const _0x5965b4=_0xcbdb41+a6_0x54d5('0x13');const _0x1e58c5=_0x5965b4+'/'+_0x1db8e4+a6_0x54d5('0x24');if(!(0x0,fs_1[a6_0x54d5('0x6c')])(_0x5965b4)){(0x0,fs_1[a6_0x54d5('0x63')])(_0x5965b4,{'recursive':!![]});}const _0x2567fc=(0x0,fs_1[a6_0x54d5('0x20')])(_0x5965b4);if(_0x2567fc[a6_0x54d5('0x35')]){if(_0x2567fc['includes'](_0x1db8e4+a6_0x54d5('0x24'))){output[a6_0x54d5('0x9')]({'title':a6_0x54d5('0x4c'),'bodyLines':[a6_0x54d5('0x11'),'','End\x20all\x20currently\x20running\x20agents,\x20run\x20\x22npx\x20nx-cloud\x20clean-up-agents\x22,\x20and\x20try\x20again.']});process[a6_0x54d5('0x46')](0x1);}output[a6_0x54d5('0x60')]({'title':a6_0x54d5('0x2d'),'bodyLines':[a6_0x54d5('0x47'),'',a6_0x54d5('0x2'),a6_0x54d5('0x21')]});}(0x0,fs_1[a6_0x54d5('0x3d')])(_0x1e58c5,'');process['on'](a6_0x54d5('0x46'),_0x370970=>{cleanupAgentLockfile(_0x1e58c5,_0x370970);});process['on'](a6_0x54d5('0x1b'),()=>__awaiter(this,void 0x0,void 0x0,function*(){yield _0x106efa[a6_0x54d5('0x5d')](a6_0x54d5('0x3b'));cleanupAgentLockfile(_0x1e58c5,0x1);}));process['on'](a6_0x54d5('0x1e'),()=>__awaiter(this,void 0x0,void 0x0,function*(){yield _0x106efa[a6_0x54d5('0x5d')]('Agent\x20was\x20terminated\x20via\x20SIGINT');cleanupAgentLockfile(_0x1e58c5,0x1);}));}function cleanupAgentLockfile(_0x118995,_0x302789){if((0x0,fs_1[a6_0x54d5('0x6c')])(_0x118995)){(0x0,fs_1[a6_0x54d5('0x3f')])(_0x118995);process[a6_0x54d5('0x46')](_0x302789);}}function startAgent(){return __awaiter(this,void 0x0,void 0x0,function*(){const _0x21e9cd=(0x0,environment_1[a6_0x54d5('0x55')])();if(!_0x21e9cd){(0x0,print_run_group_error_1[a6_0x54d5('0x4')])();return process[a6_0x54d5('0x46')](0x1);}output[a6_0x54d5('0x14')]({'title':a6_0x54d5('0x8')});const _0x3a89a7=JSON[a6_0x54d5('0x65')](stripJsonComments((0x0,fs_1[a6_0x54d5('0x5a')])(workspaceRoot+a6_0x54d5('0x61'))[a6_0x54d5('0x1c')]()))[a6_0x54d5('0x17')]['default'];if(_0x3a89a7[a6_0x54d5('0x2f')]!==a6_0x54d5('0x7')){(0x0,print_invalid_runner_error_1[a6_0x54d5('0x64')])();return process[a6_0x54d5('0x46')](0x1);}const _0x2b577c=_0x3a89a7[a6_0x54d5('0x44')];const _0x10584a=getAgentName();const _0x16a0db=new distributed_agent_api_1[(a6_0x54d5('0x52'))](_0x2b577c,_0x21e9cd,_0x10584a);createAgentLockfileAndSetUpListeners(_0x16a0db,_0x2b577c,_0x10584a);return executeTasks(_0x2b577c,_0x16a0db)[a6_0x54d5('0x59')](_0x169f89=>__awaiter(this,void 0x0,void 0x0,function*(){yield(0x0,metric_logger_1[a6_0x54d5('0x4d')])(_0x2b577c);return _0x169f89;}))['catch'](_0x3682d1=>__awaiter(this,void 0x0,void 0x0,function*(){yield _0x16a0db['completeRunGroupWithError'](a6_0x54d5('0x1f')+_0x3682d1[a6_0x54d5('0x6d')]+'\x22');throw _0x3682d1;}));});}exports[a6_0x54d5('0x16')]=startAgent;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"distributed-agent.impl.js","sourceRoot":"","sources":["../../../../../../../../libs/nx-packages/nx-cloud/lib/core/runners/distributed-agent/distributed-agent.impl.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAAyC;AACzC,2BAOY;AACZ,yDAAyD;AACzD,sGAAgG;AAChG,
|
|
1
|
+
{"version":3,"file":"distributed-agent.impl.js","sourceRoot":"","sources":["../../../../../../../../libs/nx-packages/nx-cloud/lib/core/runners/distributed-agent/distributed-agent.impl.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,143 +1 @@
|
|
|
1
|
-
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.createStartRequest = exports.DistributedExecutionApi = void 0;
|
|
13
|
-
const axios_1 = require("../../../utilities/axios");
|
|
14
|
-
const environment_1 = require("../../../utilities/environment");
|
|
15
|
-
const metric_logger_1 = require("../../../utilities/metric-logger");
|
|
16
|
-
const serializer_overrides_1 = require("../../../utilities/serializer-overrides");
|
|
17
|
-
const { output } = require('../../../utilities/nx-imports');
|
|
18
|
-
class DistributedExecutionApi {
|
|
19
|
-
constructor(options) {
|
|
20
|
-
this.apiAxiosInstance = (0, axios_1.createApiAxiosInstance)(options);
|
|
21
|
-
}
|
|
22
|
-
start(params) {
|
|
23
|
-
var _a;
|
|
24
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
25
|
-
const recorder = (0, metric_logger_1.createMetricRecorder)('dteStart');
|
|
26
|
-
let resp;
|
|
27
|
-
if (environment_1.VERBOSE_LOGGING) {
|
|
28
|
-
output.note({
|
|
29
|
-
title: 'Starting a distributed execution',
|
|
30
|
-
bodyLines: [JSON.stringify(params, null, 2)],
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
try {
|
|
34
|
-
resp = yield (0, axios_1.axiosMultipleTries)(() => this.apiAxiosInstance.post('/nx-cloud/executions/start', params));
|
|
35
|
-
recorder.recordMetric((0, metric_logger_1.mapRespToPerfEntry)(resp));
|
|
36
|
-
}
|
|
37
|
-
catch (e) {
|
|
38
|
-
recorder.recordMetric(((_a = e === null || e === void 0 ? void 0 : e.axiosException) === null || _a === void 0 ? void 0 : _a.response)
|
|
39
|
-
? (0, metric_logger_1.mapRespToPerfEntry)(e.axiosException.response)
|
|
40
|
-
: metric_logger_1.RUNNER_FAILURE_PERF_ENTRY);
|
|
41
|
-
throw e;
|
|
42
|
-
}
|
|
43
|
-
if (!resp.data.enabled) {
|
|
44
|
-
throw new Error(`Workspace is disabled. Cannot perform distributed task executions.`);
|
|
45
|
-
}
|
|
46
|
-
if (resp.data.error) {
|
|
47
|
-
throw new Error(resp.data.error);
|
|
48
|
-
}
|
|
49
|
-
return resp.data.id;
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
status(id) {
|
|
53
|
-
var _a;
|
|
54
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
55
|
-
const recorder = (0, metric_logger_1.createMetricRecorder)('dteStatus');
|
|
56
|
-
try {
|
|
57
|
-
const resp = yield (0, axios_1.axiosMultipleTries)(() => this.apiAxiosInstance.post('/nx-cloud/executions/status', {
|
|
58
|
-
id,
|
|
59
|
-
}));
|
|
60
|
-
recorder.recordMetric((0, metric_logger_1.mapRespToPerfEntry)(resp));
|
|
61
|
-
return resp.data;
|
|
62
|
-
}
|
|
63
|
-
catch (e) {
|
|
64
|
-
recorder.recordMetric(((_a = e === null || e === void 0 ? void 0 : e.axiosException) === null || _a === void 0 ? void 0 : _a.response)
|
|
65
|
-
? (0, metric_logger_1.mapRespToPerfEntry)(e.axiosException.response)
|
|
66
|
-
: metric_logger_1.RUNNER_FAILURE_PERF_ENTRY);
|
|
67
|
-
output.error({
|
|
68
|
-
title: e.message,
|
|
69
|
-
});
|
|
70
|
-
process.exit(1);
|
|
71
|
-
}
|
|
72
|
-
});
|
|
73
|
-
}
|
|
74
|
-
completeRunGroupWithError(runGroup, error) {
|
|
75
|
-
var _a;
|
|
76
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
77
|
-
const recorder = (0, metric_logger_1.createMetricRecorder)('completeRunGroup');
|
|
78
|
-
if (environment_1.VERBOSE_LOGGING) {
|
|
79
|
-
output.note({
|
|
80
|
-
title: 'Completing run group with an error',
|
|
81
|
-
bodyLines: [`runGroup: ${runGroup}`, `error: ${error}`],
|
|
82
|
-
});
|
|
83
|
-
}
|
|
84
|
-
try {
|
|
85
|
-
const resp = yield (0, axios_1.axiosMultipleTries)(() => this.apiAxiosInstance.post('/nx-cloud/executions/complete-run-group', {
|
|
86
|
-
runGroup: runGroup,
|
|
87
|
-
criticalErrorMessage: error,
|
|
88
|
-
}), 3);
|
|
89
|
-
recorder.recordMetric((0, metric_logger_1.mapRespToPerfEntry)(resp));
|
|
90
|
-
}
|
|
91
|
-
catch (e) {
|
|
92
|
-
recorder.recordMetric(((_a = e === null || e === void 0 ? void 0 : e.axiosException) === null || _a === void 0 ? void 0 : _a.response)
|
|
93
|
-
? (0, metric_logger_1.mapRespToPerfEntry)(e.axiosException.response)
|
|
94
|
-
: metric_logger_1.RUNNER_FAILURE_PERF_ENTRY);
|
|
95
|
-
}
|
|
96
|
-
});
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
exports.DistributedExecutionApi = DistributedExecutionApi;
|
|
100
|
-
function createStartRequest(runGroup, task, options) {
|
|
101
|
-
const tasksToExecute = task.map((arr) => {
|
|
102
|
-
return arr.map((t) => {
|
|
103
|
-
return {
|
|
104
|
-
taskId: t.id,
|
|
105
|
-
hash: t.hash,
|
|
106
|
-
projectName: t.target.project,
|
|
107
|
-
target: t.target.target,
|
|
108
|
-
configuration: t.target.configuration || null,
|
|
109
|
-
params: (0, serializer_overrides_1.serializeOverrides)(t),
|
|
110
|
-
};
|
|
111
|
-
});
|
|
112
|
-
});
|
|
113
|
-
const request = {
|
|
114
|
-
command: (0, environment_1.parseCommand)(),
|
|
115
|
-
branch: (0, environment_1.getBranch)(),
|
|
116
|
-
runGroup,
|
|
117
|
-
tasks: tasksToExecute,
|
|
118
|
-
maxParallel: calculateMaxParallel(options),
|
|
119
|
-
};
|
|
120
|
-
if (environment_1.NX_CLOUD_DISTRIBUTED_EXECUTION_AGENT_COUNT) {
|
|
121
|
-
request.agentCount = environment_1.NX_CLOUD_DISTRIBUTED_EXECUTION_AGENT_COUNT;
|
|
122
|
-
}
|
|
123
|
-
if (!environment_1.NX_CLOUD_DISTRIBUTED_EXECUTION_STOP_AGENTS_ON_FAILURE) {
|
|
124
|
-
request.stopAgentsOnFailure = false;
|
|
125
|
-
}
|
|
126
|
-
return request;
|
|
127
|
-
}
|
|
128
|
-
exports.createStartRequest = createStartRequest;
|
|
129
|
-
function calculateMaxParallel(options) {
|
|
130
|
-
if (options.parallel === 'false' || options.parallel === false) {
|
|
131
|
-
return 1;
|
|
132
|
-
}
|
|
133
|
-
else if (options.parallel === 'true' || options.parallel === true) {
|
|
134
|
-
return Number(options.maxParallel || 3);
|
|
135
|
-
}
|
|
136
|
-
else if (options.parallel === undefined) {
|
|
137
|
-
return options.maxParallel ? Number(options.maxParallel) : 3;
|
|
138
|
-
}
|
|
139
|
-
else {
|
|
140
|
-
return Number(options.parallel) || 3;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
//# sourceMappingURL=distributed-execution.api.js.map
|
|
1
|
+
const a7_0x5d66=['throw','axiosMultipleTries','Workspace\x20is\x20disabled.\x20Cannot\x20perform\x20distributed\x20task\x20executions.','axiosException','../../../utilities/axios','maxParallel','parallel','next','getBranch','message','Completing\x20run\x20group\x20with\x20an\x20error','/nx-cloud/executions/status','error:\x20','apiAxiosInstance','createStartRequest','done','mapRespToPerfEntry','/nx-cloud/executions/start','NX_CLOUD_DISTRIBUTED_EXECUTION_AGENT_COUNT','error','defineProperty','false','project','dteStatus','stringify','serializeOverrides','configuration','completeRunGroupWithError','data','agentCount','post','../../../utilities/environment','status','exit','apply','then','recordMetric','Starting\x20a\x20distributed\x20execution','DistributedExecutionApi','createMetricRecorder','value','start','map','NX_CLOUD_DISTRIBUTED_EXECUTION_STOP_AGENTS_ON_FAILURE','../../../utilities/nx-imports','enabled','createApiAxiosInstance','target','VERBOSE_LOGGING','note','dteStart','response','RUNNER_FAILURE_PERF_ENTRY'];(function(_0x354fb0,_0x5d6689){const _0x238a8c=function(_0x5b289e){while(--_0x5b289e){_0x354fb0['push'](_0x354fb0['shift']());}};_0x238a8c(++_0x5d6689);}(a7_0x5d66,0x144));const a7_0x238a=function(_0x354fb0,_0x5d6689){_0x354fb0=_0x354fb0-0x0;let _0x238a8c=a7_0x5d66[_0x354fb0];return _0x238a8c;};'use strict';var __awaiter=this&&this['__awaiter']||function(_0x1bba21,_0x3b7468,_0x263399,_0x2a9f52){function _0x4ab5b1(_0x3078e6){return _0x3078e6 instanceof _0x263399?_0x3078e6:new _0x263399(function(_0x432d37){_0x432d37(_0x3078e6);});}return new(_0x263399||(_0x263399=Promise))(function(_0x556ef1,_0x32ee73){function _0x44b817(_0x6b3503){try{_0x275027(_0x2a9f52[a7_0x238a('0x1')](_0x6b3503));}catch(_0x200ce0){_0x32ee73(_0x200ce0);}}function _0x583ef2(_0x3b3b80){try{_0x275027(_0x2a9f52[a7_0x238a('0x2f')](_0x3b3b80));}catch(_0x1d95ef){_0x32ee73(_0x1d95ef);}}function _0x275027(_0x3e634d){_0x3e634d[a7_0x238a('0x9')]?_0x556ef1(_0x3e634d[a7_0x238a('0x22')]):_0x4ab5b1(_0x3e634d[a7_0x238a('0x22')])[a7_0x238a('0x1d')](_0x44b817,_0x583ef2);}_0x275027((_0x2a9f52=_0x2a9f52[a7_0x238a('0x1c')](_0x1bba21,_0x3b7468||[]))['next']());});};Object[a7_0x238a('0xe')](exports,'__esModule',{'value':!![]});exports[a7_0x238a('0x8')]=exports[a7_0x238a('0x20')]=void 0x0;const axios_1=require(a7_0x238a('0x33'));const environment_1=require(a7_0x238a('0x19'));const metric_logger_1=require('../../../utilities/metric-logger');const serializer_overrides_1=require('../../../utilities/serializer-overrides');const {output}=require(a7_0x238a('0x26'));class DistributedExecutionApi{constructor(_0x1abe1c){this[a7_0x238a('0x7')]=(0x0,axios_1[a7_0x238a('0x28')])(_0x1abe1c);}[a7_0x238a('0x23')](_0x3a90b2){var _0x38146b;return __awaiter(this,void 0x0,void 0x0,function*(){const _0x3e3a4e=(0x0,metric_logger_1['createMetricRecorder'])(a7_0x238a('0x2c'));let _0x1368cf;if(environment_1[a7_0x238a('0x2a')]){output[a7_0x238a('0x2b')]({'title':a7_0x238a('0x1f'),'bodyLines':[JSON[a7_0x238a('0x12')](_0x3a90b2,null,0x2)]});}try{_0x1368cf=yield(0x0,axios_1['axiosMultipleTries'])(()=>this['apiAxiosInstance']['post'](a7_0x238a('0xb'),_0x3a90b2));_0x3e3a4e[a7_0x238a('0x1e')]((0x0,metric_logger_1[a7_0x238a('0xa')])(_0x1368cf));}catch(_0xe97fb7){_0x3e3a4e['recordMetric'](((_0x38146b=_0xe97fb7===null||_0xe97fb7===void 0x0?void 0x0:_0xe97fb7[a7_0x238a('0x32')])===null||_0x38146b===void 0x0?void 0x0:_0x38146b['response'])?(0x0,metric_logger_1['mapRespToPerfEntry'])(_0xe97fb7[a7_0x238a('0x32')][a7_0x238a('0x2d')]):metric_logger_1[a7_0x238a('0x2e')]);throw _0xe97fb7;}if(!_0x1368cf[a7_0x238a('0x16')][a7_0x238a('0x27')]){throw new Error(a7_0x238a('0x31'));}if(_0x1368cf[a7_0x238a('0x16')][a7_0x238a('0xd')]){throw new Error(_0x1368cf[a7_0x238a('0x16')][a7_0x238a('0xd')]);}return _0x1368cf[a7_0x238a('0x16')]['id'];});}[a7_0x238a('0x1a')](_0x221805){var _0x5dfcb7;return __awaiter(this,void 0x0,void 0x0,function*(){const _0x33b16c=(0x0,metric_logger_1[a7_0x238a('0x21')])(a7_0x238a('0x11'));try{const _0x1c414f=yield(0x0,axios_1[a7_0x238a('0x30')])(()=>this['apiAxiosInstance'][a7_0x238a('0x18')](a7_0x238a('0x5'),{'id':_0x221805}));_0x33b16c[a7_0x238a('0x1e')]((0x0,metric_logger_1[a7_0x238a('0xa')])(_0x1c414f));return _0x1c414f[a7_0x238a('0x16')];}catch(_0x47542d){_0x33b16c[a7_0x238a('0x1e')](((_0x5dfcb7=_0x47542d===null||_0x47542d===void 0x0?void 0x0:_0x47542d[a7_0x238a('0x32')])===null||_0x5dfcb7===void 0x0?void 0x0:_0x5dfcb7[a7_0x238a('0x2d')])?(0x0,metric_logger_1['mapRespToPerfEntry'])(_0x47542d[a7_0x238a('0x32')][a7_0x238a('0x2d')]):metric_logger_1['RUNNER_FAILURE_PERF_ENTRY']);output[a7_0x238a('0xd')]({'title':_0x47542d[a7_0x238a('0x3')]});process[a7_0x238a('0x1b')](0x1);}});}[a7_0x238a('0x15')](_0x2af500,_0x472b62){var _0x5a4281;return __awaiter(this,void 0x0,void 0x0,function*(){const _0x4a5c04=(0x0,metric_logger_1[a7_0x238a('0x21')])('completeRunGroup');if(environment_1[a7_0x238a('0x2a')]){output[a7_0x238a('0x2b')]({'title':a7_0x238a('0x4'),'bodyLines':['runGroup:\x20'+_0x2af500,a7_0x238a('0x6')+_0x472b62]});}try{const _0x39dfbe=yield(0x0,axios_1['axiosMultipleTries'])(()=>this['apiAxiosInstance']['post']('/nx-cloud/executions/complete-run-group',{'runGroup':_0x2af500,'criticalErrorMessage':_0x472b62}),0x3);_0x4a5c04[a7_0x238a('0x1e')]((0x0,metric_logger_1['mapRespToPerfEntry'])(_0x39dfbe));}catch(_0xffcaf6){_0x4a5c04[a7_0x238a('0x1e')](((_0x5a4281=_0xffcaf6===null||_0xffcaf6===void 0x0?void 0x0:_0xffcaf6[a7_0x238a('0x32')])===null||_0x5a4281===void 0x0?void 0x0:_0x5a4281[a7_0x238a('0x2d')])?(0x0,metric_logger_1['mapRespToPerfEntry'])(_0xffcaf6[a7_0x238a('0x32')][a7_0x238a('0x2d')]):metric_logger_1[a7_0x238a('0x2e')]);}});}}exports['DistributedExecutionApi']=DistributedExecutionApi;function createStartRequest(_0x3751f2,_0x1ee4fd,_0x36a636){const _0xbfc8cc=_0x1ee4fd[a7_0x238a('0x24')](_0x2e5a7f=>{return _0x2e5a7f['map'](_0x9c2e66=>{return{'taskId':_0x9c2e66['id'],'hash':_0x9c2e66['hash'],'projectName':_0x9c2e66[a7_0x238a('0x29')][a7_0x238a('0x10')],'target':_0x9c2e66[a7_0x238a('0x29')]['target'],'configuration':_0x9c2e66[a7_0x238a('0x29')][a7_0x238a('0x14')]||null,'params':(0x0,serializer_overrides_1[a7_0x238a('0x13')])(_0x9c2e66)};});});const _0x2bfa15={'command':(0x0,environment_1['parseCommand'])(),'branch':(0x0,environment_1[a7_0x238a('0x2')])(),'runGroup':_0x3751f2,'tasks':_0xbfc8cc,'maxParallel':calculateMaxParallel(_0x36a636)};if(environment_1[a7_0x238a('0xc')]){_0x2bfa15[a7_0x238a('0x17')]=environment_1[a7_0x238a('0xc')];}if(!environment_1[a7_0x238a('0x25')]){_0x2bfa15['stopAgentsOnFailure']=![];}return _0x2bfa15;}exports['createStartRequest']=createStartRequest;function calculateMaxParallel(_0x5c2c7c){if(_0x5c2c7c[a7_0x238a('0x0')]===a7_0x238a('0xf')||_0x5c2c7c['parallel']===![]){return 0x1;}else if(_0x5c2c7c[a7_0x238a('0x0')]==='true'||_0x5c2c7c[a7_0x238a('0x0')]===!![]){return Number(_0x5c2c7c[a7_0x238a('0x34')]||0x3);}else if(_0x5c2c7c[a7_0x238a('0x0')]===undefined){return _0x5c2c7c[a7_0x238a('0x34')]?Number(_0x5c2c7c[a7_0x238a('0x34')]):0x3;}else{return Number(_0x5c2c7c[a7_0x238a('0x0')])||0x3;}}
|