pull/310/head
Frostebite 2021-12-31 19:01:35 +00:00
parent a9f5c8445d
commit e8e3273cfa
3 changed files with 9 additions and 5 deletions

6
dist/index.js vendored
View File

@ -2439,10 +2439,12 @@ const __1 = __webpack_require__(41359);
class CloudRunnerBuildCommandProcessor {
static ProcessCommands(commands, buildParameters) {
return `echo "---"
echo "start cloud runner init"
${__1.Input.cloudRunnerTests ? '' : '#'} printenv
echo "start"
echo "start cloud runner job"
${commands}
echo "end---${buildParameters.logId}"
echo "end of cloud runner job
---${buildParameters.logId}"
`;
}
}

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -3,10 +3,12 @@ import { BuildParameters, Input } from '../..';
export class CloudRunnerBuildCommandProcessor {
public static ProcessCommands(commands: string, buildParameters: BuildParameters): string {
return `echo "---"
echo "start cloud runner init"
${Input.cloudRunnerTests ? '' : '#'} printenv
echo "start"
echo "start cloud runner job"
${commands}
echo "end---${buildParameters.logId}"
echo "end of cloud runner job
---${buildParameters.logId}"
`;
}
}