@nrwl/nx-cloud 15.0.1 → 15.0.2-beta.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.
- package/bin/nx-cloud.js +7 -0
- package/bin/nx-cloud.js.map +1 -1
- package/lib/core/api/error-reporter.api.js +36 -1
- package/lib/core/api/run-group.api.js +68 -1
- package/lib/core/commands/upload-and-show-run-details.d.ts +1 -0
- package/lib/core/commands/upload-and-show-run-details.js +60 -0
- package/lib/core/commands/upload-and-show-run-details.js.map +1 -0
- package/lib/core/runners/cloud-enabled/cloud-enabled-life-cycle.d.ts +0 -4
- package/lib/core/runners/cloud-enabled/cloud-enabled-life-cycle.js +109 -1
- package/lib/core/runners/cloud-enabled/cloud-enabled-life-cycle.js.map +1 -1
- package/lib/core/runners/cloud-enabled/cloud-enabled.runner.js +288 -1
- package/lib/core/runners/cloud-enabled/cloud-remote-cache.js +113 -1
- package/lib/core/runners/cloud-enabled/cloud-run.api.js +167 -1
- package/lib/core/runners/cloud-enabled/id-generator.js +16 -1
- package/lib/core/runners/distributed-agent/distributed-agent.api.js +79 -1
- package/lib/core/runners/distributed-agent/distributed-agent.impl.js +263 -1
- package/lib/core/runners/distributed-execution/distributed-execution.api.js +143 -1
- package/lib/core/runners/distributed-execution/distributed-execution.runner.js +220 -1
- package/lib/core/runners/distributed-execution/split-task-graph-into-stages.js +37 -1
- package/lib/core/runners/distributed-execution/task-graph-creator.js +77 -1
- package/lib/core/terminal-output/end-of-run-message.js +3 -3
- package/lib/core/terminal-output/end-of-run-message.js.map +1 -1
- package/lib/core/terminal-output/read-task-terminal-output.d.ts +2 -0
- package/lib/core/terminal-output/read-task-terminal-output.js +60 -0
- package/lib/core/terminal-output/read-task-terminal-output.js.map +1 -0
- package/package.json +1 -1
|
@@ -1 +1,79 @@
|
|
|
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.DistributedAgentApi = 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 { output } = require('../../../utilities/nx-imports');
|
|
17
|
+
class DistributedAgentApi {
|
|
18
|
+
constructor(options, runGroup, agentName) {
|
|
19
|
+
this.runGroup = runGroup;
|
|
20
|
+
this.agentName = agentName;
|
|
21
|
+
this.apiAxiosInstance = (0, axios_1.createApiAxiosInstance)(options);
|
|
22
|
+
}
|
|
23
|
+
tasks(executionId, statusCode, completedTasks) {
|
|
24
|
+
var _a;
|
|
25
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
26
|
+
const recorder = (0, metric_logger_1.createMetricRecorder)('dtePollTasks');
|
|
27
|
+
try {
|
|
28
|
+
const res = yield (0, axios_1.axiosMultipleTries)(() => this.apiAxiosInstance.post('/nx-cloud/executions/tasks', {
|
|
29
|
+
runGroup: this.runGroup,
|
|
30
|
+
agentName: this.agentName,
|
|
31
|
+
executionId,
|
|
32
|
+
statusCode,
|
|
33
|
+
completedTasks,
|
|
34
|
+
}));
|
|
35
|
+
recorder.recordMetric((0, metric_logger_1.mapRespToPerfEntry)(res));
|
|
36
|
+
return res.data;
|
|
37
|
+
}
|
|
38
|
+
catch (e) {
|
|
39
|
+
recorder.recordMetric(((_a = e === null || e === void 0 ? void 0 : e.axiosException) === null || _a === void 0 ? void 0 : _a.response)
|
|
40
|
+
? (0, metric_logger_1.mapRespToPerfEntry)(e.axiosException.response)
|
|
41
|
+
: metric_logger_1.RUNNER_FAILURE_PERF_ENTRY);
|
|
42
|
+
throw e;
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
completeRunGroupWithError(error) {
|
|
47
|
+
var _a;
|
|
48
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
49
|
+
if (environment_1.VERBOSE_LOGGING) {
|
|
50
|
+
output.note({
|
|
51
|
+
title: 'Completing run group with an error',
|
|
52
|
+
bodyLines: [`runGroup: ${this.runGroup}`, `error: ${error}`],
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
const recorder = (0, metric_logger_1.createMetricRecorder)('completeRunGroup');
|
|
56
|
+
try {
|
|
57
|
+
const resp = yield (0, axios_1.axiosMultipleTries)(() => this.apiAxiosInstance.post('/nx-cloud/executions/complete-run-group', {
|
|
58
|
+
runGroup: this.runGroup,
|
|
59
|
+
agentName: this.agentName,
|
|
60
|
+
criticalErrorMessage: error,
|
|
61
|
+
}));
|
|
62
|
+
if (environment_1.VERBOSE_LOGGING) {
|
|
63
|
+
output.note({
|
|
64
|
+
title: 'Completed run group with an error',
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
recorder.recordMetric((0, metric_logger_1.mapRespToPerfEntry)(resp));
|
|
68
|
+
}
|
|
69
|
+
catch (e) {
|
|
70
|
+
recorder.recordMetric(((_a = e === null || e === void 0 ? void 0 : e.axiosException) === null || _a === void 0 ? void 0 : _a.response)
|
|
71
|
+
? (0, metric_logger_1.mapRespToPerfEntry)(e.axiosException.response)
|
|
72
|
+
: metric_logger_1.RUNNER_FAILURE_PERF_ENTRY);
|
|
73
|
+
console.error(e);
|
|
74
|
+
}
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
exports.DistributedAgentApi = DistributedAgentApi;
|
|
79
|
+
//# sourceMappingURL=distributed-agent.api.js.map
|
|
@@ -1 +1,263 @@
|
|
|
1
|
-
const a6_0xa8f4=['strip-json-comments','SIGINT','completeRunGroupWithError','params','defineProperty','projects','../../../utilities/environment','npx\x20nx\x20run-many\x20--target=','target','API\x20Response','Distributed\x20Execution\x20Terminated','wait','Other\x20Nx\x20Cloud\x20Agents\x20Detected','default','configuration','toString','executionId','If\x20you\x20believe\x20this\x20is\x20the\x20case,\x20run\x20\x22npx\x20nx-cloud\x20clean-up-agents\x22.','true','then','error','completedStatusCode','/tasks-hashes-','Fetching\x20tasks...','find','completed','child_process','assign','mkdirSync','Executing:\x20\x27','length','exit','\x20seconds','Agent\x20','CIRCLE_JOB','next','status','\x20--projects=','readdirSync','value','/nx.json','retryDuring:\x20','floor','This\x20can\x20also\x20be\x20a\x20false\x20positive\x20caused\x20by\x20agents\x20that\x20did\x20not\x20shut\x20down\x20correctly.','Waiter','../../../utilities/create-unchanged-value-timeout','taskId','Agent\x20was\x20terminated\x20via\x20SIGTERM','error:\x20','push','../../../utilities/waiter','executionId:\x20','forEach','getTime','SIGTERM','readFileSync','We\x20have\x20detected\x20other\x20agents\x20running\x20in\x20this\x20workspace.\x20This\x20can\x20cause\x20unexpected\x20behavior.','getRunGroup','Starting\x20an\x20agent\x20for\x20running\x20Nx\x20tasks','Duplicate\x20Agent\x20ID\x20Detected','Command\x20execution\x20failed\x20(distributed\x20task\x20execution:\x20','\x20--parallel\x20--max-parallel=','random','map','reset','.lock','execSync','NO_FURTHER_TASKS_TO_RUN','options','inherit','tasksRunnerOptions','No\x20new\x20messages\x20received\x20after\x20','cacheDirectory','message','End\x20all\x20currently\x20running\x20agents,\x20run\x20\x22npx\x20nx-cloud\x20clean-up-agents\x22,\x20and\x20try\x20again.','existsSync','completed:\x20','NX_AGENT_NAME','__awaiter','CIRCLE_STAGE','./distributed-agent.api','env','criticalErrorMessage','../../../utilities/metric-logger','parse','ignore','/lockfiles','VERBOSE_LOGGING','submitRunMetrics','note','CIRCLECI','retryDuring','warn','We\x20have\x20detected\x20another\x20agent\x20with\x20this\x20ID\x20running\x20in\x20this\x20workspace.\x20This\x20should\x20not\x20happen.','projectName'];(function(_0x48f02f,_0xa8f41){const _0x271a3d=function(_0x1d28be){while(--_0x1d28be){_0x48f02f['push'](_0x48f02f['shift']());}};_0x271a3d(++_0xa8f41);}(a6_0xa8f4,0x196));const a6_0x271a=function(_0x48f02f,_0xa8f41){_0x48f02f=_0x48f02f-0x0;let _0x271a3d=a6_0xa8f4[_0x48f02f];return _0x271a3d;};'use strict';var __awaiter=this&&this[a6_0x271a('0x34')]||function(_0x369c78,_0x36cc7c,_0x2ea350,_0x2b61e9){function _0x4de65f(_0x2e97ff){return _0x2e97ff instanceof _0x2ea350?_0x2e97ff:new _0x2ea350(function(_0x3e405c){_0x3e405c(_0x2e97ff);});}return new(_0x2ea350||(_0x2ea350=Promise))(function(_0x14a61e,_0x19a9f6){function _0x57b51f(_0xaa7b7e){try{_0xec5b83(_0x2b61e9['next'](_0xaa7b7e));}catch(_0x35323c){_0x19a9f6(_0x35323c);}}function _0x3b668a(_0x165bbe){try{_0xec5b83(_0x2b61e9['throw'](_0x165bbe));}catch(_0x55a76b){_0x19a9f6(_0x55a76b);}}function _0xec5b83(_0x19cffe){_0x19cffe['done']?_0x14a61e(_0x19cffe[a6_0x271a('0xd')]):_0x4de65f(_0x19cffe['value'])[a6_0x271a('0x58')](_0x57b51f,_0x3b668a);}_0xec5b83((_0x2b61e9=_0x2b61e9['apply'](_0x369c78,_0x36cc7c||[]))[a6_0x271a('0x9')]());});};Object[a6_0x271a('0x49')](exports,'__esModule',{'value':!![]});exports['startAgent']=void 0x0;const child_process_1=require(a6_0x271a('0x0'));const fs_1=require('fs');const stripJsonComments=require(a6_0x271a('0x45'));const create_unchanged_value_timeout_1=require(a6_0x271a('0x13'));const environment_1=require(a6_0x271a('0x4b'));const metric_logger_1=require(a6_0x271a('0x39'));const waiter_1=require(a6_0x271a('0x18'));const print_run_group_error_1=require('../../error/print-run-group-error');const distributed_agent_api_1=require(a6_0x271a('0x36'));const {output,workspaceRoot}=require('../../../utilities/nx-imports');function executeTasks(_0x295176,_0x378954){return __awaiter(this,void 0x0,void 0x0,function*(){let _0x55f716=0x0;let _0x10af7e=null;const _0xd019ea=(0x0,create_unchanged_value_timeout_1['createUnchangedValueTimeout'])({'title':a6_0x271a('0x2d')+environment_1['NO_MESSAGES_TIMEOUT']/0x3e8+a6_0x271a('0x6'),'timeout':environment_1['NO_MESSAGES_TIMEOUT']});const _0x4136cd=new waiter_1[(a6_0x271a('0x12'))]();let _0x6893d5=[];const _0x15bdcb=new Date();let _0x2c05c7=![];while(!![]){if(environment_1['VERBOSE_LOGGING']){output[a6_0x271a('0x3f')]({'title':a6_0x271a('0x5c')});}_0x10af7e=yield _0x378954['tasks'](_0x10af7e?_0x10af7e[a6_0x271a('0x55')]:null,_0x55f716,_0x6893d5);if(environment_1['VERBOSE_LOGGING']){output['note']({'title':a6_0x271a('0x4e'),'bodyLines':[a6_0x271a('0x32')+_0x10af7e['completed'],'status:\x20'+_0x10af7e[a6_0x271a('0xa')],a6_0x271a('0xf')+_0x10af7e[a6_0x271a('0x41')],a6_0x271a('0x19')+_0x10af7e[a6_0x271a('0x55')],'number\x20of\x20tasks:\x20'+_0x10af7e['tasks'][a6_0x271a('0x4')],a6_0x271a('0x16')+_0x10af7e['criticalErrorMessage'],'maxParallel:\x20'+_0x10af7e['maxParallel']]});}if(_0x10af7e[a6_0x271a('0x38')]){output[a6_0x271a('0x59')]({'title':a6_0x271a('0x4f'),'bodyLines':['Error:',_0x10af7e[a6_0x271a('0x38')]]});process['exit'](0x0);}if((_0x10af7e===null||_0x10af7e===void 0x0?void 0x0:_0x10af7e['retryDuring'])&&(_0x10af7e===null||_0x10af7e===void 0x0?void 0x0:_0x10af7e[a6_0x271a('0x41')])!==0x0&&!_0x2c05c7&&new Date()[a6_0x271a('0x1b')]()-_0x15bdcb['getTime']()>_0x10af7e[a6_0x271a('0x41')]){yield _0x4136cd[a6_0x271a('0x50')]();continue;}if((_0x10af7e===null||_0x10af7e===void 0x0?void 0x0:_0x10af7e[a6_0x271a('0xa')])!==undefined){if(_0x10af7e[a6_0x271a('0xa')]==='RUN_GROUP_COMPLETED'||_0x10af7e[a6_0x271a('0xa')]===a6_0x271a('0x29')){return;}}else if(_0x10af7e[a6_0x271a('0x5e')]){return;}_0xd019ea(_0x10af7e['tasks'][a6_0x271a('0x25')](_0x287742=>_0x287742[a6_0x271a('0x14')])['join'](''));if(!_0x10af7e[a6_0x271a('0x55')]){if(environment_1[a6_0x271a('0x3d')]){output[a6_0x271a('0x3f')]({'title':'Waiting...'});}yield _0x4136cd[a6_0x271a('0x50')]();_0x55f716=0x0;_0x6893d5=[];continue;}_0x4136cd[a6_0x271a('0x26')]();_0x2c05c7=!![];const _0x36c197=invokeTasksUsingRunMany(_0x295176,_0x10af7e[a6_0x271a('0x55')],_0x10af7e['tasks'],_0x10af7e['maxParallel']);_0x55f716=_0x36c197[a6_0x271a('0x5a')];_0x6893d5=_0x36c197['completedTasks'];}});}function readCompletedTasks(_0x57683d,_0x23dc20){const _0x1b9e70=a6_0x271a('0x22')+_0x23dc20+').\x20Tasks\x20hashes\x20haven\x27t\x20been\x20recorded.';let _0x21415d;try{const _0x273eb6=_0x57683d[a6_0x271a('0x2e')]||'./node_modules/.cache/nx';const _0x5991dc=_0x273eb6+a6_0x271a('0x5b')+_0x23dc20;_0x21415d=JSON[a6_0x271a('0x3a')]((0x0,fs_1[a6_0x271a('0x1d')])(_0x5991dc)[a6_0x271a('0x54')]());(0x0,fs_1['unlinkSync'])(_0x5991dc);}catch(_0x4c4bb8){throw new Error(_0x1b9e70);}if(_0x21415d['length']==0x0){throw new Error(_0x1b9e70);}return _0x21415d;}function invokeTasksUsingRunMany(_0x43bcbf,_0x536352,_0x5810c7,_0x544f93){let _0x36a963=0x0;const _0x3f4380=[];for(const _0x31f9f7 of groupByTarget(_0x5810c7)){const _0x334a1e=_0x31f9f7[a6_0x271a('0x53')]?'--configuration='+_0x31f9f7['configuration']:'';const _0x47c04d=_0x544f93>0x1?a6_0x271a('0x23')+_0x544f93:'';const _0x40fec6=a6_0x271a('0x4c')+_0x31f9f7[a6_0x271a('0x4d')]+'\x20'+_0x334a1e+a6_0x271a('0xb')+_0x31f9f7[a6_0x271a('0x4a')]['join'](',')+'\x20'+_0x31f9f7[a6_0x271a('0x48')]+_0x47c04d;if(environment_1[a6_0x271a('0x3d')]){output['note']({'title':a6_0x271a('0x3')+_0x40fec6+'\x27'});}try{(0x0,child_process_1[a6_0x271a('0x28')])(_0x40fec6,{'stdio':[a6_0x271a('0x3b'),a6_0x271a('0x2b'),'inherit'],'env':Object[a6_0x271a('0x1')](Object[a6_0x271a('0x1')]({},process['env']),{'NX_CACHE_FAILURES':a6_0x271a('0x57'),'NX_CLOUD_DISTRIBUTED_EXECUTION_ID':_0x536352,'NX_STREAM_OUTPUT':'true','NX_PREFIX_OUTPUT':a6_0x271a('0x57')})});_0x3f4380[a6_0x271a('0x17')](...readCompletedTasks(_0x43bcbf,_0x536352));}catch(_0x1116b7){if(_0x1116b7[a6_0x271a('0xa')]===environment_1['DISTRIBUTED_TASK_EXECUTION_INTERNAL_ERROR_STATUS_CODE']){throw _0x1116b7;}else{_0x36a963=0x1;_0x3f4380[a6_0x271a('0x17')](...readCompletedTasks(_0x43bcbf,_0x536352));}}}return{'completedStatusCode':_0x36a963,'completedTasks':_0x3f4380};}function groupByTarget(_0x251e1d){const _0xa44b98=[];_0x251e1d[a6_0x271a('0x1a')](_0x483cf4=>{const _0x12bce7=_0xa44b98[a6_0x271a('0x5d')](_0x553419=>_0x553419['target']===_0x483cf4[a6_0x271a('0x4d')]&&_0x553419['configuration']===_0x483cf4[a6_0x271a('0x53')]);if(_0x12bce7){_0x12bce7[a6_0x271a('0x4a')]['push'](_0x483cf4[a6_0x271a('0x44')]);}else{_0xa44b98['push']({'target':_0x483cf4[a6_0x271a('0x4d')],'projects':[_0x483cf4[a6_0x271a('0x44')]],'params':_0x483cf4[a6_0x271a('0x48')],'configuration':_0x483cf4[a6_0x271a('0x53')]});}});return _0xa44b98;}function getAgentName(){if(process[a6_0x271a('0x37')]['NX_AGENT_NAME']!==undefined){return process['env'][a6_0x271a('0x33')];}else if(process[a6_0x271a('0x37')][a6_0x271a('0x40')]!==undefined&&process['env'][a6_0x271a('0x35')]){return process['env']['CIRCLE_STAGE'];}else if(process[a6_0x271a('0x37')][a6_0x271a('0x40')]!==undefined&&process[a6_0x271a('0x37')][a6_0x271a('0x8')]){return process[a6_0x271a('0x37')][a6_0x271a('0x8')];}else{return a6_0x271a('0x7')+Math[a6_0x271a('0x10')](Math[a6_0x271a('0x24')]()*0x186a0);}}function createAgentLockfileAndSetUpListeners(_0x23065b,_0x43cc55,_0x218d43){const _0x40accf=_0x43cc55[a6_0x271a('0x2e')]||'./node_modules/.cache/nx';const _0x18d8ad=_0x40accf+a6_0x271a('0x3c');const _0x49db78=_0x18d8ad+'/'+_0x218d43+'.lock';if(!(0x0,fs_1['existsSync'])(_0x18d8ad)){(0x0,fs_1[a6_0x271a('0x2')])(_0x18d8ad,{'recursive':!![]});}const _0x18fed5=(0x0,fs_1[a6_0x271a('0xc')])(_0x18d8ad);if(_0x18fed5[a6_0x271a('0x4')]){if(_0x18fed5['includes'](_0x218d43+a6_0x271a('0x27'))){output[a6_0x271a('0x59')]({'title':a6_0x271a('0x21'),'bodyLines':[a6_0x271a('0x43'),'',a6_0x271a('0x30')]});process[a6_0x271a('0x5')](0x1);}output[a6_0x271a('0x42')]({'title':a6_0x271a('0x51'),'bodyLines':[a6_0x271a('0x1e'),'',a6_0x271a('0x11'),a6_0x271a('0x56')]});}(0x0,fs_1['writeFileSync'])(_0x49db78,'');process['on'](a6_0x271a('0x5'),_0x33b599=>{cleanupAgentLockfile(_0x49db78,_0x33b599);});process['on'](a6_0x271a('0x1c'),()=>__awaiter(this,void 0x0,void 0x0,function*(){yield _0x23065b[a6_0x271a('0x47')](a6_0x271a('0x15'));cleanupAgentLockfile(_0x49db78,0x1);}));process['on'](a6_0x271a('0x46'),()=>__awaiter(this,void 0x0,void 0x0,function*(){yield _0x23065b[a6_0x271a('0x47')]('Agent\x20was\x20terminated\x20via\x20SIGINT');cleanupAgentLockfile(_0x49db78,0x1);}));}function cleanupAgentLockfile(_0x2992ad,_0x525fa2){if((0x0,fs_1[a6_0x271a('0x31')])(_0x2992ad)){(0x0,fs_1['unlinkSync'])(_0x2992ad);process[a6_0x271a('0x5')](_0x525fa2);}}function startAgent(){return __awaiter(this,void 0x0,void 0x0,function*(){const _0x2f1705=(0x0,environment_1[a6_0x271a('0x1f')])();if(!_0x2f1705){(0x0,print_run_group_error_1['printRunGroupError'])();return process[a6_0x271a('0x5')](0x1);}output[a6_0x271a('0x3f')]({'title':a6_0x271a('0x20')});const _0x2448e4=JSON[a6_0x271a('0x3a')](stripJsonComments((0x0,fs_1[a6_0x271a('0x1d')])(workspaceRoot+a6_0x271a('0xe'))[a6_0x271a('0x54')]()))[a6_0x271a('0x2c')][a6_0x271a('0x52')][a6_0x271a('0x2a')];const _0x16f0f9=getAgentName();const _0x2e2c43=new distributed_agent_api_1['DistributedAgentApi'](_0x2448e4,_0x2f1705,_0x16f0f9);createAgentLockfileAndSetUpListeners(_0x2e2c43,_0x2448e4,_0x16f0f9);return executeTasks(_0x2448e4,_0x2e2c43)['then'](_0x188285=>__awaiter(this,void 0x0,void 0x0,function*(){yield(0x0,metric_logger_1[a6_0x271a('0x3e')])(_0x2448e4);return _0x188285;}))['catch'](_0x2a391d=>__awaiter(this,void 0x0,void 0x0,function*(){yield _0x2e2c43['completeRunGroupWithError']('Critical\x20Error\x20in\x20Agent:\x20\x22'+_0x2a391d[a6_0x271a('0x2f')]+'\x22');throw _0x2a391d;}));});}exports['startAgent']=startAgent;
|
|
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 +1,143 @@
|
|
|
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.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
|