2021-12-29 19:08:41 +00:00
|
|
|
import { BuildParameters } from '../..';
|
|
|
|
|
|
2021-12-29 16:28:42 +00:00
|
|
|
export class CloudRunnerBuildCommandProcessor {
|
2021-12-29 19:08:41 +00:00
|
|
|
public static ProcessCommands(commands: string, buildParameters: BuildParameters): string {
|
2021-12-29 17:04:06 +00:00
|
|
|
return `echo "---"
|
|
|
|
|
echo "start"
|
|
|
|
|
${commands}
|
2021-12-29 19:08:41 +00:00
|
|
|
echo "end--${buildParameters.logId}"
|
2021-12-29 17:04:06 +00:00
|
|
|
`;
|
2021-12-29 16:28:42 +00:00
|
|
|
}
|
|
|
|
|
}
|