@nrwl/nx-cloud 15.3.1-beta.1 → 15.3.1

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.
@@ -1,157 +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 fs_1 = require("fs");
14
- const stripJsonComments = require("strip-json-comments");
15
- const yargsParser = require("yargs-parser");
16
- const environment_1 = require("../../../utilities/environment");
17
- const metric_logger_1 = require("../../../utilities/metric-logger");
18
- const print_cacheable_targets_error_1 = require("../../error/print-cacheable-targets-error");
19
- const print_invalid_runner_error_1 = require("../../error/print-invalid-runner-error");
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 execute_tasks_1 = require("./execute-tasks");
23
- const dte_artifact_storage_1 = require("../../../utilities/dte-artifact-storage");
24
- const file_storage_1 = require("../../file-storage/file-storage");
25
- const e2e_encryption_1 = require("../../file-storage/e2e-encryption");
26
- const error_reporter_api_1 = require("../../api/error-reporter.api");
27
- const invoke_tasks_using_run_many_1 = require("./invoke-tasks-using-run-many");
28
- const invoke_tasks_using_nx_imperative_api_1 = require("./invoke-tasks-using-nx-imperative-api");
29
- const { output, initTasksRunner, workspaceRoot, } = require('../../../utilities/nx-imports');
30
- const args = yargsParser(process.argv, {
31
- array: ['targets'],
32
- default: {},
33
- });
34
- // just in case someone passes the args with commas
35
- // cf. https://github.com/yargs/yargs/issues/846
36
- if (args.targets && args.targets.length === 1) {
37
- args.targets = args.targets[0].split(',').map((x) => x.trim());
38
- }
39
- function startAgent() {
40
- return __awaiter(this, void 0, void 0, function* () {
41
- const branch = (0, environment_1.getBranch)();
42
- const runGroup = (0, environment_1.getRunGroup)();
43
- const ciExecutionId = (0, environment_1.getCIExecutionId)();
44
- const ciExecutionEnv = (0, environment_1.getCIExecutionEnv)();
45
- if (!(0, print_run_group_error_1.canDetectRunGroup)(runGroup, ciExecutionId)) {
46
- (0, print_run_group_error_1.printRunGroupError)();
47
- process.exit(1);
48
- }
49
- if (args.targets && args.targets.length) {
50
- output.note({
51
- title: `Starting an agent for running Nx target(s) [${args.targets.join(', ')}]`,
52
- });
53
- }
54
- else {
55
- output.note({
56
- title: 'Starting an agent for running Nx tasks',
57
- });
58
- }
59
- const defaultRunnerConfig = JSON.parse(stripJsonComments((0, fs_1.readFileSync)(`${workspaceRoot}/nx.json`).toString())).tasksRunnerOptions.default;
60
- if (defaultRunnerConfig.runner !== '@nrwl/nx-cloud') {
61
- (0, print_invalid_runner_error_1.printInvalidRunnerError)();
62
- return process.exit(1);
63
- }
64
- const options = defaultRunnerConfig.options;
65
- if (args.targets &&
66
- args.targets.some((target) => { var _a; return !((_a = options.cacheableOperations) === null || _a === void 0 ? void 0 : _a.includes(target)); })) {
67
- const wrongTargets = args.targets.filter((target) => { var _a; return !((_a = options.cacheableOperations) === null || _a === void 0 ? void 0 : _a.includes(target)); });
68
- (0, print_cacheable_targets_error_1.printCacheableTargetsError)(wrongTargets);
69
- return process.exit(1);
70
- }
71
- const agentName = getAgentName();
72
- const api = new distributed_agent_api_1.DistributedAgentApi(options, branch, runGroup, ciExecutionId, ciExecutionEnv, agentName);
73
- createAgentLockfileAndSetUpListeners(api, options, agentName);
74
- const encryption = new e2e_encryption_1.E2EEncryption(environment_1.ENCRYPTION_KEY || options.encryptionKey);
75
- const errorReporter = new error_reporter_api_1.ErrorReporterApi(options);
76
- const dteArtifactStorage = new dte_artifact_storage_1.DteArtifactStorage(new file_storage_1.FileStorage(encryption, errorReporter, options, 'dte-agent'), (0, environment_1.getNxCacheDirectory)(options));
77
- const invokeTasks = initTasksRunner
78
- ? yield (0, invoke_tasks_using_nx_imperative_api_1.invokeTasksUsingNxImperativeApi)(options)
79
- : yield (0, invoke_tasks_using_run_many_1.invokeTasksUsingRunMany)(options);
80
- return (0, execute_tasks_1.executeTasks)(agentName, api, dteArtifactStorage, invokeTasks, args.targets)
81
- .then((res) => __awaiter(this, void 0, void 0, function* () {
82
- yield (0, metric_logger_1.submitRunMetrics)(options);
83
- return res;
84
- }))
85
- .catch((e) => __awaiter(this, void 0, void 0, function* () {
86
- yield api.completeRunGroupWithError(`Critical Error in Agent: "${e.message}"`);
87
- throw e;
88
- }));
89
- });
90
- }
91
- exports.startAgent = startAgent;
92
- function getAgentName() {
93
- if (process.env.NX_AGENT_NAME !== undefined) {
94
- return process.env.NX_AGENT_NAME;
95
- }
96
- else if (process.env.CIRCLECI !== undefined && process.env.CIRCLE_STAGE) {
97
- return process.env.CIRCLE_STAGE;
98
- }
99
- else if (process.env.CIRCLECI !== undefined && process.env.CIRCLE_JOB) {
100
- return process.env.CIRCLE_JOB;
101
- }
102
- else {
103
- return `Agent ${Math.floor(Math.random() * 100000)}`;
104
- }
105
- }
106
- function createAgentLockfileAndSetUpListeners(api, options, agentName) {
107
- const cacheDirectory = (0, environment_1.getNxCacheDirectory)(options);
108
- const lockFileDirectory = `${cacheDirectory}/lockfiles`;
109
- const lockFilePath = `${lockFileDirectory}/${agentName}.lock`;
110
- if (!(0, fs_1.existsSync)(lockFileDirectory)) {
111
- (0, fs_1.mkdirSync)(lockFileDirectory, { recursive: true });
112
- }
113
- // Check for other agents' lockfiles and warn if exist
114
- const lockFiles = (0, fs_1.readdirSync)(lockFileDirectory);
115
- if (lockFiles.length) {
116
- // Check to make sure the current agent name is not in use (only 1/100000 ^ 2 chance of this)
117
- if (lockFiles.includes(`${agentName}.lock`)) {
118
- output.error({
119
- title: 'Duplicate Agent ID Detected',
120
- bodyLines: [
121
- 'We have detected another agent with this ID running in this workspace. This should not happen.',
122
- '',
123
- 'End all currently running agents, run "npx nx-cloud clean-up-agents", and try again.',
124
- ],
125
- });
126
- process.exit(1);
127
- }
128
- output.warn({
129
- title: 'Other Nx Cloud Agents Detected',
130
- bodyLines: [
131
- 'We have detected other agents running in this workspace. This can cause unexpected behavior.',
132
- '',
133
- 'This can also be a false positive caused by agents that did not shut down correctly.',
134
- 'If you believe this is the case, run "npx nx-cloud clean-up-agents".',
135
- ],
136
- });
137
- }
138
- (0, fs_1.writeFileSync)(lockFilePath, '');
139
- process.on('exit', (code) => {
140
- cleanupAgentLockfile(lockFilePath, code);
141
- });
142
- process.on('SIGTERM', () => __awaiter(this, void 0, void 0, function* () {
143
- yield api.completeRunGroupWithError('Agent was terminated via SIGTERM');
144
- cleanupAgentLockfile(lockFilePath, 1);
145
- }));
146
- process.on('SIGINT', () => __awaiter(this, void 0, void 0, function* () {
147
- yield api.completeRunGroupWithError('Agent was terminated via SIGINT');
148
- cleanupAgentLockfile(lockFilePath, 1);
149
- }));
150
- }
151
- function cleanupAgentLockfile(lockFilePath, code) {
152
- if ((0, fs_1.existsSync)(lockFilePath)) {
153
- (0, fs_1.unlinkSync)(lockFilePath);
154
- process.exit(code);
155
- }
156
- }
157
- //# sourceMappingURL=distributed-agent.impl.js.map
1
+ const a6_0xf3c2=['default','defineProperty','length','If\x20you\x20believe\x20this\x20is\x20the\x20case,\x20run\x20\x22npx\x20nx-cloud\x20clean-up-agents\x22.','invokeTasksUsingRunMany','CIRCLECI','Agent\x20was\x20terminated\x20via\x20SIGTERM','readFileSync','some','We\x20have\x20detected\x20other\x20agents\x20running\x20in\x20this\x20workspace.\x20This\x20can\x20cause\x20unexpected\x20behavior.','apply','@nrwl/nx-cloud','cacheableOperations','FileStorage','SIGINT','Other\x20Nx\x20Cloud\x20Agents\x20Detected','tasksRunnerOptions','This\x20can\x20also\x20be\x20a\x20false\x20positive\x20caused\x20by\x20agents\x20that\x20did\x20not\x20shut\x20down\x20correctly.','../../../utilities/nx-imports','then','CIRCLE_JOB','printCacheableTargetsError','env','startAgent','join','__awaiter','encryptionKey','__esModule','value','../../file-storage/file-storage','parse','strip-json-comments','Duplicate\x20Agent\x20ID\x20Detected','targets','../../../utilities/dte-artifact-storage','runner','Agent\x20was\x20terminated\x20via\x20SIGINT','Agent\x20','split','yargs-parser','Critical\x20Error\x20in\x20Agent:\x20\x22','../../file-storage/e2e-encryption','argv','CIRCLE_STAGE','invokeTasksUsingNxImperativeApi','readdirSync','includes','E2EEncryption','note','error','executeTasks','printInvalidRunnerError','filter','./invoke-tasks-using-run-many','throw','ENCRYPTION_KEY','message','.lock','../../error/print-cacheable-targets-error','trim','submitRunMetrics','../../../utilities/environment','../../error/print-run-group-error','floor','End\x20all\x20currently\x20running\x20agents,\x20run\x20\x22npx\x20nx-cloud\x20clean-up-agents\x22,\x20and\x20try\x20again.','done','completeRunGroupWithError','dte-agent','../../error/print-invalid-runner-error','We\x20have\x20detected\x20another\x20agent\x20with\x20this\x20ID\x20running\x20in\x20this\x20workspace.\x20This\x20should\x20not\x20happen.','getCIExecutionEnv','canDetectRunGroup','warn','./invoke-tasks-using-nx-imperative-api','NX_AGENT_NAME','../../api/error-reporter.api','existsSync','unlinkSync','getBranch','next','map','exit'];(function(_0x32181e,_0xf3c2d5){const _0x5eb9d0=function(_0x3b2cde){while(--_0x3b2cde){_0x32181e['push'](_0x32181e['shift']());}};_0x5eb9d0(++_0xf3c2d5);}(a6_0xf3c2,0x136));const a6_0x5eb9=function(_0x32181e,_0xf3c2d5){_0x32181e=_0x32181e-0x0;let _0x5eb9d0=a6_0xf3c2[_0x32181e];return _0x5eb9d0;};'use strict';var __awaiter=this&&this[a6_0x5eb9('0x2b')]||function(_0x2ee038,_0x5b07ba,_0x4afbc1,_0x1b14e8){function _0x5904aa(_0x4e0baa){return _0x4e0baa instanceof _0x4afbc1?_0x4e0baa:new _0x4afbc1(function(_0x3bc3ab){_0x3bc3ab(_0x4e0baa);});}return new(_0x4afbc1||(_0x4afbc1=Promise))(function(_0x44e0ba,_0x586655){function _0x7db22b(_0x3611ae){try{_0x47b09b(_0x1b14e8['next'](_0x3611ae));}catch(_0x4b5e3c){_0x586655(_0x4b5e3c);}}function _0x1077a6(_0x193fbe){try{_0x47b09b(_0x1b14e8[a6_0x5eb9('0x48')](_0x193fbe));}catch(_0x1ba644){_0x586655(_0x1ba644);}}function _0x47b09b(_0x1e965b){_0x1e965b[a6_0x5eb9('0x1')]?_0x44e0ba(_0x1e965b[a6_0x5eb9('0x2e')]):_0x5904aa(_0x1e965b[a6_0x5eb9('0x2e')])[a6_0x5eb9('0x25')](_0x7db22b,_0x1077a6);}_0x47b09b((_0x1b14e8=_0x1b14e8[a6_0x5eb9('0x1c')](_0x2ee038,_0x5b07ba||[]))[a6_0x5eb9('0xf')]());});};Object[a6_0x5eb9('0x13')](exports,a6_0x5eb9('0x2d'),{'value':!![]});exports[a6_0x5eb9('0x29')]=void 0x0;const fs_1=require('fs');const stripJsonComments=require(a6_0x5eb9('0x31'));const yargsParser=require(a6_0x5eb9('0x39'));const environment_1=require(a6_0x5eb9('0x4f'));const metric_logger_1=require('../../../utilities/metric-logger');const print_cacheable_targets_error_1=require(a6_0x5eb9('0x4c'));const print_invalid_runner_error_1=require(a6_0x5eb9('0x4'));const print_run_group_error_1=require(a6_0x5eb9('0x50'));const distributed_agent_api_1=require('./distributed-agent.api');const execute_tasks_1=require('./execute-tasks');const dte_artifact_storage_1=require(a6_0x5eb9('0x34'));const file_storage_1=require(a6_0x5eb9('0x2f'));const e2e_encryption_1=require(a6_0x5eb9('0x3b'));const error_reporter_api_1=require(a6_0x5eb9('0xb'));const invoke_tasks_using_run_many_1=require(a6_0x5eb9('0x47'));const invoke_tasks_using_nx_imperative_api_1=require(a6_0x5eb9('0x9'));const {output,initTasksRunner,workspaceRoot}=require(a6_0x5eb9('0x24'));const args=yargsParser(process[a6_0x5eb9('0x3c')],{'array':[a6_0x5eb9('0x33')],'default':{}});if(args['targets']&&args[a6_0x5eb9('0x33')][a6_0x5eb9('0x14')]===0x1){args[a6_0x5eb9('0x33')]=args[a6_0x5eb9('0x33')][0x0][a6_0x5eb9('0x38')](',')[a6_0x5eb9('0x10')](_0x5d6e10=>_0x5d6e10[a6_0x5eb9('0x4d')]());}function startAgent(){return __awaiter(this,void 0x0,void 0x0,function*(){const _0x2b4e45=(0x0,environment_1[a6_0x5eb9('0xe')])();const _0x38ac62=(0x0,environment_1['getRunGroup'])();const _0x105dd5=(0x0,environment_1['getCIExecutionId'])();const _0x4f4b7e=(0x0,environment_1[a6_0x5eb9('0x6')])();if(!(0x0,print_run_group_error_1[a6_0x5eb9('0x7')])(_0x38ac62,_0x105dd5)){(0x0,print_run_group_error_1['printRunGroupError'])();process[a6_0x5eb9('0x11')](0x1);}if(args[a6_0x5eb9('0x33')]&&args[a6_0x5eb9('0x33')][a6_0x5eb9('0x14')]){output['note']({'title':'Starting\x20an\x20agent\x20for\x20running\x20Nx\x20target(s)\x20['+args[a6_0x5eb9('0x33')][a6_0x5eb9('0x2a')](',\x20')+']'});}else{output[a6_0x5eb9('0x42')]({'title':'Starting\x20an\x20agent\x20for\x20running\x20Nx\x20tasks'});}const _0x390817=JSON[a6_0x5eb9('0x30')](stripJsonComments((0x0,fs_1[a6_0x5eb9('0x19')])(workspaceRoot+'/nx.json')['toString']()))[a6_0x5eb9('0x22')][a6_0x5eb9('0x12')];if(_0x390817[a6_0x5eb9('0x35')]!==a6_0x5eb9('0x1d')){(0x0,print_invalid_runner_error_1[a6_0x5eb9('0x45')])();return process[a6_0x5eb9('0x11')](0x1);}const _0x2a3b47=_0x390817['options'];if(args[a6_0x5eb9('0x33')]&&args[a6_0x5eb9('0x33')][a6_0x5eb9('0x1a')](_0x11a316=>{var _0x1eab9f;return!((_0x1eab9f=_0x2a3b47[a6_0x5eb9('0x1e')])===null||_0x1eab9f===void 0x0?void 0x0:_0x1eab9f[a6_0x5eb9('0x40')](_0x11a316));})){const _0x264234=args[a6_0x5eb9('0x33')][a6_0x5eb9('0x46')](_0x1776ac=>{var _0x4d2cc5;return!((_0x4d2cc5=_0x2a3b47[a6_0x5eb9('0x1e')])===null||_0x4d2cc5===void 0x0?void 0x0:_0x4d2cc5[a6_0x5eb9('0x40')](_0x1776ac));});(0x0,print_cacheable_targets_error_1[a6_0x5eb9('0x27')])(_0x264234);return process['exit'](0x1);}const _0x3dbba6=getAgentName();const _0x508221=new distributed_agent_api_1['DistributedAgentApi'](_0x2a3b47,_0x2b4e45,_0x38ac62,_0x105dd5,_0x4f4b7e,_0x3dbba6);createAgentLockfileAndSetUpListeners(_0x508221,_0x2a3b47,_0x3dbba6);const _0x702bc0=new e2e_encryption_1[(a6_0x5eb9('0x41'))](environment_1[a6_0x5eb9('0x49')]||_0x2a3b47[a6_0x5eb9('0x2c')]);const _0x21d788=new error_reporter_api_1['ErrorReporterApi'](_0x2a3b47);const _0x1a814a=new dte_artifact_storage_1['DteArtifactStorage'](new file_storage_1[(a6_0x5eb9('0x1f'))](_0x702bc0,_0x21d788,_0x2a3b47,a6_0x5eb9('0x3')),(0x0,environment_1['getNxCacheDirectory'])(_0x2a3b47));const _0x330259=initTasksRunner?yield(0x0,invoke_tasks_using_nx_imperative_api_1[a6_0x5eb9('0x3e')])(_0x2a3b47):yield(0x0,invoke_tasks_using_run_many_1[a6_0x5eb9('0x16')])(_0x2a3b47);return(0x0,execute_tasks_1[a6_0x5eb9('0x44')])(_0x3dbba6,_0x508221,_0x1a814a,_0x330259,args[a6_0x5eb9('0x33')])[a6_0x5eb9('0x25')](_0x4cd7f6=>__awaiter(this,void 0x0,void 0x0,function*(){yield(0x0,metric_logger_1[a6_0x5eb9('0x4e')])(_0x2a3b47);return _0x4cd7f6;}))['catch'](_0x565e88=>__awaiter(this,void 0x0,void 0x0,function*(){yield _0x508221['completeRunGroupWithError'](a6_0x5eb9('0x3a')+_0x565e88[a6_0x5eb9('0x4a')]+'\x22');throw _0x565e88;}));});}exports[a6_0x5eb9('0x29')]=startAgent;function getAgentName(){if(process[a6_0x5eb9('0x28')][a6_0x5eb9('0xa')]!==undefined){return process[a6_0x5eb9('0x28')][a6_0x5eb9('0xa')];}else if(process[a6_0x5eb9('0x28')][a6_0x5eb9('0x17')]!==undefined&&process[a6_0x5eb9('0x28')][a6_0x5eb9('0x3d')]){return process[a6_0x5eb9('0x28')][a6_0x5eb9('0x3d')];}else if(process[a6_0x5eb9('0x28')][a6_0x5eb9('0x17')]!==undefined&&process[a6_0x5eb9('0x28')][a6_0x5eb9('0x26')]){return process[a6_0x5eb9('0x28')][a6_0x5eb9('0x26')];}else{return a6_0x5eb9('0x37')+Math[a6_0x5eb9('0x51')](Math['random']()*0x186a0);}}function createAgentLockfileAndSetUpListeners(_0x3a1c46,_0x1bca4d,_0xea5a72){const _0x19ff1c=(0x0,environment_1['getNxCacheDirectory'])(_0x1bca4d);const _0x19a00f=_0x19ff1c+'/lockfiles';const _0xda0c1e=_0x19a00f+'/'+_0xea5a72+a6_0x5eb9('0x4b');if(!(0x0,fs_1[a6_0x5eb9('0xc')])(_0x19a00f)){(0x0,fs_1['mkdirSync'])(_0x19a00f,{'recursive':!![]});}const _0x11727d=(0x0,fs_1[a6_0x5eb9('0x3f')])(_0x19a00f);if(_0x11727d[a6_0x5eb9('0x14')]){if(_0x11727d[a6_0x5eb9('0x40')](_0xea5a72+a6_0x5eb9('0x4b'))){output[a6_0x5eb9('0x43')]({'title':a6_0x5eb9('0x32'),'bodyLines':[a6_0x5eb9('0x5'),'',a6_0x5eb9('0x0')]});process['exit'](0x1);}output[a6_0x5eb9('0x8')]({'title':a6_0x5eb9('0x21'),'bodyLines':[a6_0x5eb9('0x1b'),'',a6_0x5eb9('0x23'),a6_0x5eb9('0x15')]});}(0x0,fs_1['writeFileSync'])(_0xda0c1e,'');process['on'](a6_0x5eb9('0x11'),_0xcabd7b=>{cleanupAgentLockfile(_0xda0c1e,_0xcabd7b);});process['on']('SIGTERM',()=>__awaiter(this,void 0x0,void 0x0,function*(){yield _0x3a1c46[a6_0x5eb9('0x2')](a6_0x5eb9('0x18'));cleanupAgentLockfile(_0xda0c1e,0x1);}));process['on'](a6_0x5eb9('0x20'),()=>__awaiter(this,void 0x0,void 0x0,function*(){yield _0x3a1c46[a6_0x5eb9('0x2')](a6_0x5eb9('0x36'));cleanupAgentLockfile(_0xda0c1e,0x1);}));}function cleanupAgentLockfile(_0x1e53e6,_0x3456bc){if((0x0,fs_1['existsSync'])(_0x1e53e6)){(0x0,fs_1[a6_0x5eb9('0xd')])(_0x1e53e6);process['exit'](_0x3456bc);}}
@@ -1,114 +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.executeTasks = void 0;
13
- const create_unchanged_value_timeout_1 = require("../../../utilities/create-unchanged-value-timeout");
14
- const environment_1 = require("../../../utilities/environment");
15
- const waiter_1 = require("../../../utilities/waiter");
16
- const { output } = require('../../../utilities/nx-imports');
17
- function executeTasks(agentName, api, dteArtifactStorage, invokeTasks, targets) {
18
- return __awaiter(this, void 0, void 0, function* () {
19
- let completedStatusCode = 0;
20
- let apiResponse = null;
21
- const failIfSameTasksAfterTimeout = (0, create_unchanged_value_timeout_1.createUnchangedValueTimeout)({
22
- title: `No new messages received after ${environment_1.NO_MESSAGES_TIMEOUT / 1000} seconds`,
23
- timeout: environment_1.NO_MESSAGES_TIMEOUT,
24
- });
25
- const waiter = new waiter_1.Waiter();
26
- let completedTasks = [];
27
- const startTime = new Date();
28
- let executedAnyTasks = false;
29
- const processedTasks = {};
30
- while (true) {
31
- if (environment_1.VERBOSE_LOGGING) {
32
- output.note({
33
- title: `${agentName} fetching tasks...`,
34
- });
35
- }
36
- apiResponse = yield api.tasks(apiResponse ? apiResponse.executionId : null, completedStatusCode, completedTasks, targets);
37
- if (environment_1.VERBOSE_LOGGING) {
38
- output.note({
39
- title: `${agentName} received an API Response`,
40
- bodyLines: [
41
- `completed: ${apiResponse.completed}`,
42
- `status: ${apiResponse.status}`,
43
- `retryDuring: ${apiResponse.retryDuring}`,
44
- `executionId: ${apiResponse.executionId}`,
45
- `number of tasks: ${apiResponse.tasks.length}`,
46
- `error: ${apiResponse.criticalErrorMessage}`,
47
- `maxParallel: ${apiResponse.maxParallel}`,
48
- ],
49
- });
50
- }
51
- if (apiResponse.criticalErrorMessage) {
52
- output.error({
53
- title: 'Distributed Execution Terminated',
54
- bodyLines: ['Error:', apiResponse.criticalErrorMessage],
55
- });
56
- process.exit(0);
57
- }
58
- // run group is completed but it might be a rerun
59
- // we will try several times before going further and
60
- // completed the response
61
- // we only do it if we haven't executed any tasks
62
- if ((apiResponse === null || apiResponse === void 0 ? void 0 : apiResponse.retryDuring) &&
63
- (apiResponse === null || apiResponse === void 0 ? void 0 : apiResponse.retryDuring) !== 0 &&
64
- !executedAnyTasks &&
65
- new Date().getTime() - startTime.getTime() > apiResponse.retryDuring) {
66
- yield waiter.wait();
67
- continue;
68
- }
69
- if ((apiResponse === null || apiResponse === void 0 ? void 0 : apiResponse.status) !== undefined) {
70
- if (apiResponse.status === 'RUN_GROUP_COMPLETED' ||
71
- apiResponse.status === 'NO_FURTHER_TASKS_TO_RUN') {
72
- return;
73
- }
74
- }
75
- else if (apiResponse.completed) {
76
- return;
77
- }
78
- // if status is present that use the status instead of completed, otherwise use completed
79
- failIfSameTasksAfterTimeout(apiResponse.tasks.map((t) => t.taskId).join(''));
80
- if (!apiResponse.executionId) {
81
- if (environment_1.VERBOSE_LOGGING) {
82
- output.note({
83
- title: `${agentName} waiting...`,
84
- });
85
- }
86
- yield waiter.wait();
87
- completedStatusCode = 0;
88
- completedTasks = [];
89
- continue;
90
- }
91
- waiter.reset();
92
- executedAnyTasks = true;
93
- if (apiResponse.completedTasks) {
94
- for (const t of apiResponse.completedTasks) {
95
- if (processedTasks[t.taskId])
96
- continue;
97
- output.note({
98
- title: `${agentName} downloading artifacts for ${t.taskId} Hash: ${t.hash} Url: ${t.url}`,
99
- });
100
- yield dteArtifactStorage.retrieveAndExtract(t.hash, t.url);
101
- processedTasks[t.taskId] = true;
102
- }
103
- }
104
- const r = yield invokeTasks(apiResponse.executionId, apiResponse.tasks, apiResponse.maxParallel);
105
- for (const t of r.completedTasks) {
106
- processedTasks[t.taskId] = true;
107
- }
108
- completedStatusCode = r.completedStatusCode;
109
- completedTasks = r.completedTasks;
110
- }
111
- });
112
- }
113
- exports.executeTasks = executeTasks;
114
- //# sourceMappingURL=execute-tasks.js.map
1
+ const a7_0x50a0=['retryDuring','then','apply','error','wait','completed','\x20Url:\x20','executeTasks','\x20seconds','taskId','exit','No\x20new\x20messages\x20received\x20after\x20','completedStatusCode','executionId','../../../utilities/nx-imports','../../../utilities/waiter','retrieveAndExtract','executionId:\x20','Waiter','join','NO_MESSAGES_TIMEOUT','\x20downloading\x20artifacts\x20for\x20','\x20fetching\x20tasks...','url','\x20received\x20an\x20API\x20Response','Error:','map','next','error:\x20','getTime','value','../../../utilities/create-unchanged-value-timeout','\x20waiting...','maxParallel','tasks','note','completedTasks','status:\x20','VERBOSE_LOGGING','retryDuring:\x20','done','createUnchangedValueTimeout','criticalErrorMessage','\x20Hash:\x20','maxParallel:\x20','NO_FURTHER_TASKS_TO_RUN','RUN_GROUP_COMPLETED','status','Distributed\x20Execution\x20Terminated','reset'];(function(_0x4df033,_0x50a01b){const _0x34824c=function(_0x5859e9){while(--_0x5859e9){_0x4df033['push'](_0x4df033['shift']());}};_0x34824c(++_0x50a01b);}(a7_0x50a0,0x1ab));const a7_0x3482=function(_0x4df033,_0x50a01b){_0x4df033=_0x4df033-0x0;let _0x34824c=a7_0x50a0[_0x4df033];return _0x34824c;};'use strict';var __awaiter=this&&this['__awaiter']||function(_0x4ec700,_0x19e21b,_0x220f07,_0x236d23){function _0x4a4e1d(_0x364049){return _0x364049 instanceof _0x220f07?_0x364049:new _0x220f07(function(_0x372de6){_0x372de6(_0x364049);});}return new(_0x220f07||(_0x220f07=Promise))(function(_0x464963,_0x8d39bb){function _0x1dbd84(_0x5dd7ba){try{_0x3a293e(_0x236d23[a7_0x3482('0x0')](_0x5dd7ba));}catch(_0x464a6a){_0x8d39bb(_0x464a6a);}}function _0x577a5d(_0x1b7bfc){try{_0x3a293e(_0x236d23['throw'](_0x1b7bfc));}catch(_0x357284){_0x8d39bb(_0x357284);}}function _0x3a293e(_0x3c7a96){_0x3c7a96[a7_0x3482('0xd')]?_0x464963(_0x3c7a96[a7_0x3482('0x3')]):_0x4a4e1d(_0x3c7a96[a7_0x3482('0x3')])[a7_0x3482('0x18')](_0x1dbd84,_0x577a5d);}_0x3a293e((_0x236d23=_0x236d23[a7_0x3482('0x19')](_0x4ec700,_0x19e21b||[]))[a7_0x3482('0x0')]());});};Object['defineProperty'](exports,'__esModule',{'value':!![]});exports[a7_0x3482('0x1e')]=void 0x0;const create_unchanged_value_timeout_1=require(a7_0x3482('0x4'));const environment_1=require('../../../utilities/environment');const waiter_1=require(a7_0x3482('0x26'));const {output}=require(a7_0x3482('0x25'));function executeTasks(_0xa354c8,_0x5accaa,_0x585a3e,_0x344f9d,_0x4303b6){return __awaiter(this,void 0x0,void 0x0,function*(){let _0x10282e=0x0;let _0x912f2a=null;const _0x1207c8=(0x0,create_unchanged_value_timeout_1[a7_0x3482('0xe')])({'title':a7_0x3482('0x22')+environment_1[a7_0x3482('0x2b')]/0x3e8+a7_0x3482('0x1f'),'timeout':environment_1[a7_0x3482('0x2b')]});const _0x5ae0ed=new waiter_1[(a7_0x3482('0x29'))]();let _0x771ef4=[];const _0x39b6f2=new Date();let _0x4ef9ac=![];const _0x56edf0={};while(!![]){if(environment_1[a7_0x3482('0xb')]){output['note']({'title':_0xa354c8+a7_0x3482('0x2d')});}_0x912f2a=yield _0x5accaa['tasks'](_0x912f2a?_0x912f2a['executionId']:null,_0x10282e,_0x771ef4,_0x4303b6);if(environment_1[a7_0x3482('0xb')]){output[a7_0x3482('0x8')]({'title':_0xa354c8+a7_0x3482('0x2f'),'bodyLines':['completed:\x20'+_0x912f2a[a7_0x3482('0x1c')],a7_0x3482('0xa')+_0x912f2a[a7_0x3482('0x14')],a7_0x3482('0xc')+_0x912f2a['retryDuring'],a7_0x3482('0x28')+_0x912f2a['executionId'],'number\x20of\x20tasks:\x20'+_0x912f2a[a7_0x3482('0x7')]['length'],a7_0x3482('0x1')+_0x912f2a['criticalErrorMessage'],a7_0x3482('0x11')+_0x912f2a[a7_0x3482('0x6')]]});}if(_0x912f2a[a7_0x3482('0xf')]){output[a7_0x3482('0x1a')]({'title':a7_0x3482('0x15'),'bodyLines':[a7_0x3482('0x30'),_0x912f2a[a7_0x3482('0xf')]]});process[a7_0x3482('0x21')](0x0);}if((_0x912f2a===null||_0x912f2a===void 0x0?void 0x0:_0x912f2a[a7_0x3482('0x17')])&&(_0x912f2a===null||_0x912f2a===void 0x0?void 0x0:_0x912f2a['retryDuring'])!==0x0&&!_0x4ef9ac&&new Date()[a7_0x3482('0x2')]()-_0x39b6f2[a7_0x3482('0x2')]()>_0x912f2a['retryDuring']){yield _0x5ae0ed[a7_0x3482('0x1b')]();continue;}if((_0x912f2a===null||_0x912f2a===void 0x0?void 0x0:_0x912f2a[a7_0x3482('0x14')])!==undefined){if(_0x912f2a[a7_0x3482('0x14')]===a7_0x3482('0x13')||_0x912f2a[a7_0x3482('0x14')]===a7_0x3482('0x12')){return;}}else if(_0x912f2a[a7_0x3482('0x1c')]){return;}_0x1207c8(_0x912f2a[a7_0x3482('0x7')][a7_0x3482('0x31')](_0x10182b=>_0x10182b[a7_0x3482('0x20')])[a7_0x3482('0x2a')](''));if(!_0x912f2a[a7_0x3482('0x24')]){if(environment_1['VERBOSE_LOGGING']){output[a7_0x3482('0x8')]({'title':_0xa354c8+a7_0x3482('0x5')});}yield _0x5ae0ed[a7_0x3482('0x1b')]();_0x10282e=0x0;_0x771ef4=[];continue;}_0x5ae0ed[a7_0x3482('0x16')]();_0x4ef9ac=!![];if(_0x912f2a[a7_0x3482('0x9')]){for(const _0x3b26f0 of _0x912f2a[a7_0x3482('0x9')]){if(_0x56edf0[_0x3b26f0[a7_0x3482('0x20')]])continue;output['note']({'title':_0xa354c8+a7_0x3482('0x2c')+_0x3b26f0[a7_0x3482('0x20')]+a7_0x3482('0x10')+_0x3b26f0['hash']+a7_0x3482('0x1d')+_0x3b26f0[a7_0x3482('0x2e')]});yield _0x585a3e[a7_0x3482('0x27')](_0x3b26f0['hash'],_0x3b26f0['url']);_0x56edf0[_0x3b26f0[a7_0x3482('0x20')]]=!![];}}const _0x21b6e2=yield _0x344f9d(_0x912f2a[a7_0x3482('0x24')],_0x912f2a[a7_0x3482('0x7')],_0x912f2a[a7_0x3482('0x6')]);for(const _0x26499d of _0x21b6e2[a7_0x3482('0x9')]){_0x56edf0[_0x26499d[a7_0x3482('0x20')]]=!![];}_0x10282e=_0x21b6e2[a7_0x3482('0x23')];_0x771ef4=_0x21b6e2[a7_0x3482('0x9')];}});}exports[a7_0x3482('0x1e')]=executeTasks;
@@ -1,58 +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.invokeTasksUsingNxImperativeApi = void 0;
13
- const { initTasksRunner } = require('../../../utilities/nx-imports');
14
- const parser = require("yargs-parser");
15
- const serializer_overrides_1 = require("../../../utilities/serializer-overrides");
16
- function invokeTasksUsingNxImperativeApi(options) {
17
- return __awaiter(this, void 0, void 0, function* () {
18
- const tasksRunner = yield initTasksRunner(options);
19
- return (executionId, tasksToExecute, parallel) => __awaiter(this, void 0, void 0, function* () {
20
- const tasks = tasksToExecute.map((t) => {
21
- const params = parser(t.params, {
22
- configuration: {
23
- 'camel-case-expansion': false,
24
- 'dot-notation': true,
25
- },
26
- });
27
- const unparsed = (0, serializer_overrides_1.unparse)(params);
28
- if (params._.length == 0) {
29
- delete params._;
30
- }
31
- return {
32
- id: t.taskId,
33
- target: {
34
- project: t.projectName,
35
- target: t.target,
36
- configuration: t.configuration,
37
- },
38
- overrides: Object.assign(Object.assign({}, params), { __overrides_unparsed__: unparsed }),
39
- };
40
- });
41
- process.env.NX_CACHE_FAILURES = 'true'; // this is only requires because of how we do uploads
42
- process.env.NX_CLOUD_DISTRIBUTED_EXECUTION_ID = executionId;
43
- process.env.NX_STREAM_OUTPUT = 'true';
44
- process.env.NX_PREFIX_OUTPUT = 'true';
45
- const r = yield tasksRunner.invoke({ tasks, parallel });
46
- const completedTasks = Object.values(r.taskGraph.tasks);
47
- return {
48
- completedTasks: completedTasks.map((t) => ({
49
- taskId: t.id,
50
- hash: t.hash,
51
- })),
52
- completedStatusCode: r.status,
53
- };
54
- });
55
- });
56
- }
57
- exports.invokeTasksUsingNxImperativeApi = invokeTasksUsingNxImperativeApi;
58
- //# sourceMappingURL=invoke-tasks-using-nx-imperative-api.js.map
1
+ const a8_0x4c13=['status','NX_STREAM_OUTPUT','env','target','apply','value','invoke','NX_CLOUD_DISTRIBUTED_EXECUTION_ID','throw','next','tasks','../../../utilities/serializer-overrides','taskId','map','__esModule','NX_PREFIX_OUTPUT','values','assign','done','NX_CACHE_FAILURES','then','yargs-parser','unparse','../../../utilities/nx-imports','invokeTasksUsingNxImperativeApi','length','defineProperty','params','configuration'];(function(_0x5bb1cf,_0x4c1374){const _0x42f36e=function(_0x5c7121){while(--_0x5c7121){_0x5bb1cf['push'](_0x5bb1cf['shift']());}};_0x42f36e(++_0x4c1374);}(a8_0x4c13,0x1e5));const a8_0x42f3=function(_0x5bb1cf,_0x4c1374){_0x5bb1cf=_0x5bb1cf-0x0;let _0x42f36e=a8_0x4c13[_0x5bb1cf];return _0x42f36e;};'use strict';var __awaiter=this&&this['__awaiter']||function(_0x284ee9,_0x5e0986,_0x33450c,_0x343ff6){function _0x5d785f(_0x3d63e3){return _0x3d63e3 instanceof _0x33450c?_0x3d63e3:new _0x33450c(function(_0x36950c){_0x36950c(_0x3d63e3);});}return new(_0x33450c||(_0x33450c=Promise))(function(_0x1ffacc,_0x1deef3){function _0x3b7247(_0x56515b){try{_0x1a0272(_0x343ff6[a8_0x42f3('0x11')](_0x56515b));}catch(_0x493458){_0x1deef3(_0x493458);}}function _0x5a7ac0(_0x2733a4){try{_0x1a0272(_0x343ff6[a8_0x42f3('0x10')](_0x2733a4));}catch(_0x248d48){_0x1deef3(_0x248d48);}}function _0x1a0272(_0x229d1d){_0x229d1d[a8_0x42f3('0x1a')]?_0x1ffacc(_0x229d1d['value']):_0x5d785f(_0x229d1d[a8_0x42f3('0xd')])[a8_0x42f3('0x1c')](_0x3b7247,_0x5a7ac0);}_0x1a0272((_0x343ff6=_0x343ff6[a8_0x42f3('0xc')](_0x284ee9,_0x5e0986||[]))[a8_0x42f3('0x11')]());});};Object[a8_0x42f3('0x5')](exports,a8_0x42f3('0x16'),{'value':!![]});exports[a8_0x42f3('0x3')]=void 0x0;const {initTasksRunner}=require(a8_0x42f3('0x2'));const parser=require(a8_0x42f3('0x0'));const serializer_overrides_1=require(a8_0x42f3('0x13'));function invokeTasksUsingNxImperativeApi(_0x5eee50){return __awaiter(this,void 0x0,void 0x0,function*(){const _0x1959ec=yield initTasksRunner(_0x5eee50);return(_0x421f09,_0x18007d,_0x2739e3)=>__awaiter(this,void 0x0,void 0x0,function*(){const _0x56f3e9=_0x18007d[a8_0x42f3('0x15')](_0x14d839=>{const _0x342b03=parser(_0x14d839[a8_0x42f3('0x6')],{'configuration':{'camel-case-expansion':![],'dot-notation':!![]}});const _0x38daf0=(0x0,serializer_overrides_1[a8_0x42f3('0x1')])(_0x342b03);if(_0x342b03['_'][a8_0x42f3('0x4')]==0x0){delete _0x342b03['_'];}return{'id':_0x14d839[a8_0x42f3('0x14')],'target':{'project':_0x14d839['projectName'],'target':_0x14d839[a8_0x42f3('0xb')],'configuration':_0x14d839[a8_0x42f3('0x7')]},'overrides':Object[a8_0x42f3('0x19')](Object['assign']({},_0x342b03),{'__overrides_unparsed__':_0x38daf0})};});process[a8_0x42f3('0xa')][a8_0x42f3('0x1b')]='true';process[a8_0x42f3('0xa')][a8_0x42f3('0xf')]=_0x421f09;process['env'][a8_0x42f3('0x9')]='true';process[a8_0x42f3('0xa')][a8_0x42f3('0x17')]='true';const _0xfaed3b=yield _0x1959ec[a8_0x42f3('0xe')]({'tasks':_0x56f3e9,'parallel':_0x2739e3});const _0xc9567c=Object[a8_0x42f3('0x18')](_0xfaed3b['taskGraph'][a8_0x42f3('0x12')]);return{'completedTasks':_0xc9567c[a8_0x42f3('0x15')](_0x579838=>({'taskId':_0x579838['id'],'hash':_0x579838['hash']})),'completedStatusCode':_0xfaed3b[a8_0x42f3('0x8')]};});});}exports[a8_0x42f3('0x3')]=invokeTasksUsingNxImperativeApi;
@@ -1,97 +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.invokeTasksUsingRunMany = void 0;
13
- const environment_1 = require("../../../utilities/environment");
14
- const child_process_1 = require("child_process");
15
- const fs_1 = require("fs");
16
- const { output } = require('../../../utilities/nx-imports');
17
- function invokeTasksUsingRunMany(options) {
18
- return __awaiter(this, void 0, void 0, function* () {
19
- const readCompleted = completedTasksReader(options);
20
- return function invokeTasksUsingRunMany(executionId, tasksToExecute, parallel) {
21
- return __awaiter(this, void 0, void 0, function* () {
22
- let completedStatusCode = 0;
23
- const completedTasks = [];
24
- for (const g of groupByTarget(tasksToExecute)) {
25
- const config = g.configuration
26
- ? `--configuration=${g.configuration}`
27
- : ``;
28
- const parallelStr = parallel > 1 ? ` --parallel --max-parallel=${parallel}` : ``;
29
- // TODO use pnpx or yarn when needed
30
- const command = `npx nx run-many --target=${g.target} ${config} --projects=${g.projects.join(',')} ${g.params}${parallelStr}`;
31
- if (environment_1.VERBOSE_LOGGING) {
32
- output.note({
33
- title: `Executing: '${command}'`,
34
- });
35
- }
36
- try {
37
- (0, child_process_1.execSync)(command, {
38
- stdio: ['ignore', 'inherit', 'inherit'],
39
- 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' }),
40
- });
41
- completedTasks.push(...readCompleted(executionId));
42
- }
43
- catch (e) {
44
- if (e.status === environment_1.DISTRIBUTED_TASK_EXECUTION_INTERNAL_ERROR_STATUS_CODE) {
45
- throw e;
46
- }
47
- else {
48
- completedStatusCode = 1;
49
- completedTasks.push(...readCompleted(executionId));
50
- }
51
- }
52
- }
53
- return { completedStatusCode, completedTasks };
54
- });
55
- };
56
- });
57
- }
58
- exports.invokeTasksUsingRunMany = invokeTasksUsingRunMany;
59
- function groupByTarget(tasks) {
60
- const res = [];
61
- tasks.forEach((t) => {
62
- const r = res.find((rr) => rr.target === t.target && rr.configuration === t.configuration);
63
- if (r) {
64
- r.projects.push(t.projectName);
65
- }
66
- else {
67
- res.push({
68
- target: t.target,
69
- projects: [t.projectName],
70
- params: t.params,
71
- configuration: t.configuration,
72
- });
73
- }
74
- });
75
- return res;
76
- }
77
- function completedTasksReader(options) {
78
- const cacheDirectory = (0, environment_1.getNxCacheDirectory)(options);
79
- return (distributedExecutionId) => {
80
- const errorMessage = `Command execution failed (distributed task execution: ${distributedExecutionId}). Tasks hashes haven\'t been recorded.`;
81
- let completedTasks;
82
- try {
83
- const taskHashesFile = `${cacheDirectory}/tasks-hashes-${distributedExecutionId}`;
84
- completedTasks = JSON.parse((0, fs_1.readFileSync)(taskHashesFile).toString());
85
- // remove it such that if the next command crashes we don't read an obsolete file
86
- (0, fs_1.unlinkSync)(taskHashesFile);
87
- }
88
- catch (e) {
89
- throw new Error(errorMessage);
90
- }
91
- if (completedTasks.length == 0) {
92
- throw new Error(errorMessage);
93
- }
94
- return completedTasks;
95
- };
96
- }
97
- //# sourceMappingURL=invoke-tasks-using-run-many.js.map
1
+ const a9_0x2a59=['../../../utilities/nx-imports','assign','value','length','npx\x20nx\x20run-many\x20--target=','defineProperty','unlinkSync','--configuration=','then','\x20--projects=','next','__esModule','toString','true','VERBOSE_LOGGING','Command\x20execution\x20failed\x20(distributed\x20task\x20execution:\x20','done','__awaiter','/tasks-hashes-','invokeTasksUsingRunMany','child_process','getNxCacheDirectory','params','readFileSync','DISTRIBUTED_TASK_EXECUTION_INTERNAL_ERROR_STATUS_CODE','configuration','forEach','ignore','env','join','note','push','target','projects','parse','status',').\x20Tasks\x20hashes\x20haven\x27t\x20been\x20recorded.'];(function(_0x15ea65,_0x2a5984){const _0xf3fdc6=function(_0x1ab57a){while(--_0x1ab57a){_0x15ea65['push'](_0x15ea65['shift']());}};_0xf3fdc6(++_0x2a5984);}(a9_0x2a59,0xc0));const a9_0xf3fd=function(_0x15ea65,_0x2a5984){_0x15ea65=_0x15ea65-0x0;let _0xf3fdc6=a9_0x2a59[_0x15ea65];return _0xf3fdc6;};'use strict';var __awaiter=this&&this[a9_0xf3fd('0xa')]||function(_0x14091f,_0x1b7186,_0x297feb,_0x5dbeae){function _0x40198f(_0x5b6399){return _0x5b6399 instanceof _0x297feb?_0x5b6399:new _0x297feb(function(_0x5bd525){_0x5bd525(_0x5b6399);});}return new(_0x297feb||(_0x297feb=Promise))(function(_0x4b6f0d,_0x30a85b){function _0x539b2b(_0x53fd76){try{_0xb8e2d3(_0x5dbeae['next'](_0x53fd76));}catch(_0x5069f0){_0x30a85b(_0x5069f0);}}function _0x4270d4(_0x55b412){try{_0xb8e2d3(_0x5dbeae['throw'](_0x55b412));}catch(_0x4d5d71){_0x30a85b(_0x4d5d71);}}function _0xb8e2d3(_0x2144f4){_0x2144f4[a9_0xf3fd('0x9')]?_0x4b6f0d(_0x2144f4[a9_0xf3fd('0x20')]):_0x40198f(_0x2144f4[a9_0xf3fd('0x20')])[a9_0xf3fd('0x1')](_0x539b2b,_0x4270d4);}_0xb8e2d3((_0x5dbeae=_0x5dbeae['apply'](_0x14091f,_0x1b7186||[]))[a9_0xf3fd('0x3')]());});};Object[a9_0xf3fd('0x23')](exports,a9_0xf3fd('0x4'),{'value':!![]});exports[a9_0xf3fd('0xc')]=void 0x0;const environment_1=require('../../../utilities/environment');const child_process_1=require(a9_0xf3fd('0xd'));const fs_1=require('fs');const {output}=require(a9_0xf3fd('0x1e'));function invokeTasksUsingRunMany(_0x39a7e6){return __awaiter(this,void 0x0,void 0x0,function*(){const _0x6f2d94=completedTasksReader(_0x39a7e6);return function _0x58bb5c(_0x58cb90,_0x42026,_0x10bf14){return __awaiter(this,void 0x0,void 0x0,function*(){let _0x41b312=0x0;const _0x5d15ba=[];for(const _0x4b4e53 of groupByTarget(_0x42026)){const _0x24b0a5=_0x4b4e53[a9_0xf3fd('0x12')]?a9_0xf3fd('0x0')+_0x4b4e53[a9_0xf3fd('0x12')]:'';const _0x173349=_0x10bf14>0x1?'\x20--parallel\x20--max-parallel='+_0x10bf14:'';const _0x445a16=a9_0xf3fd('0x22')+_0x4b4e53[a9_0xf3fd('0x19')]+'\x20'+_0x24b0a5+a9_0xf3fd('0x2')+_0x4b4e53[a9_0xf3fd('0x1a')][a9_0xf3fd('0x16')](',')+'\x20'+_0x4b4e53[a9_0xf3fd('0xf')]+_0x173349;if(environment_1[a9_0xf3fd('0x7')]){output[a9_0xf3fd('0x17')]({'title':'Executing:\x20\x27'+_0x445a16+'\x27'});}try{(0x0,child_process_1['execSync'])(_0x445a16,{'stdio':[a9_0xf3fd('0x14'),'inherit','inherit'],'env':Object['assign'](Object[a9_0xf3fd('0x1f')]({},process[a9_0xf3fd('0x15')]),{'NX_CACHE_FAILURES':a9_0xf3fd('0x6'),'NX_CLOUD_DISTRIBUTED_EXECUTION_ID':_0x58cb90,'NX_STREAM_OUTPUT':'true','NX_PREFIX_OUTPUT':'true'})});_0x5d15ba['push'](..._0x6f2d94(_0x58cb90));}catch(_0x201d09){if(_0x201d09[a9_0xf3fd('0x1c')]===environment_1[a9_0xf3fd('0x11')]){throw _0x201d09;}else{_0x41b312=0x1;_0x5d15ba[a9_0xf3fd('0x18')](..._0x6f2d94(_0x58cb90));}}}return{'completedStatusCode':_0x41b312,'completedTasks':_0x5d15ba};});};});}exports[a9_0xf3fd('0xc')]=invokeTasksUsingRunMany;function groupByTarget(_0x37585d){const _0x8d61ce=[];_0x37585d[a9_0xf3fd('0x13')](_0x23a6fb=>{const _0x28d127=_0x8d61ce['find'](_0x481098=>_0x481098['target']===_0x23a6fb[a9_0xf3fd('0x19')]&&_0x481098[a9_0xf3fd('0x12')]===_0x23a6fb[a9_0xf3fd('0x12')]);if(_0x28d127){_0x28d127[a9_0xf3fd('0x1a')][a9_0xf3fd('0x18')](_0x23a6fb['projectName']);}else{_0x8d61ce[a9_0xf3fd('0x18')]({'target':_0x23a6fb[a9_0xf3fd('0x19')],'projects':[_0x23a6fb['projectName']],'params':_0x23a6fb[a9_0xf3fd('0xf')],'configuration':_0x23a6fb['configuration']});}});return _0x8d61ce;}function completedTasksReader(_0x329945){const _0x3f7127=(0x0,environment_1[a9_0xf3fd('0xe')])(_0x329945);return _0x554930=>{const _0x2d94fb=a9_0xf3fd('0x8')+_0x554930+a9_0xf3fd('0x1d');let _0x8d5482;try{const _0x280dae=_0x3f7127+a9_0xf3fd('0xb')+_0x554930;_0x8d5482=JSON[a9_0xf3fd('0x1b')]((0x0,fs_1[a9_0xf3fd('0x10')])(_0x280dae)[a9_0xf3fd('0x5')]());(0x0,fs_1[a9_0xf3fd('0x24')])(_0x280dae);}catch(_0x112847){throw new Error(_0x2d94fb);}if(_0x8d5482[a9_0xf3fd('0x21')]==0x0){throw new Error(_0x2d94fb);}return _0x8d5482;};}