shorter names
parent
1b67dbc043
commit
36ef39b79a
|
@ -5837,7 +5837,7 @@ class CustomWorkflow {
|
|||
}
|
||||
static async runCustomJob(buildSteps, environmentVariables, secrets) {
|
||||
try {
|
||||
cloud_runner_logger_1.default.log(`Cloud Runner is running in custom job mode`);
|
||||
cloud_runner_logger_1.default.log(`Cloud Runner is running in custom job mode Secrets Count:${secrets.length} Env Var Count:${environmentVariables.length}`);
|
||||
let output = '';
|
||||
// if (CloudRunner.buildParameters?.cloudRunnerDebug) {
|
||||
// CloudRunnerLogger.log(`Custom Job Description \n${JSON.stringify(buildSteps, undefined, 4)}`);
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -25,7 +25,9 @@ export class CustomWorkflow {
|
|||
secrets: CloudRunnerSecret[],
|
||||
) {
|
||||
try {
|
||||
CloudRunnerLogger.log(`Cloud Runner is running in custom job mode`);
|
||||
CloudRunnerLogger.log(
|
||||
`Cloud Runner is running in custom job mode Secrets Count:${secrets.length} Env Var Count:${environmentVariables.length}`,
|
||||
);
|
||||
let output = '';
|
||||
|
||||
// if (CloudRunner.buildParameters?.cloudRunnerDebug) {
|
||||
|
|
Loading…
Reference in New Issue