pull/310/head
Frostebite 2021-11-28 17:52:32 +00:00
parent f53915397a
commit e4f6734e21
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2421,7 +2421,7 @@ class BuildAutomationWorkflow {
yield custom_workflow_1.CustomWorkflow.runCustomJob(cloud_runner_state_1.CloudRunnerState.buildParams.preBuildSteps); yield custom_workflow_1.CustomWorkflow.runCustomJob(cloud_runner_state_1.CloudRunnerState.buildParams.preBuildSteps);
} }
cloud_runner_logger_1.default.logWithTime('Pre build step(s) time'); cloud_runner_logger_1.default.logWithTime('Pre build step(s) time');
new build_step_1.BuildStep().run(new cloud_runner_step_state_1.CloudRunnerStepState(baseImage, cloud_runner_state_1.CloudRunnerState.readBuildEnvironmentVariables(), cloud_runner_state_1.CloudRunnerState.defaultSecrets)); yield new build_step_1.BuildStep().run(new cloud_runner_step_state_1.CloudRunnerStepState(baseImage, cloud_runner_state_1.CloudRunnerState.readBuildEnvironmentVariables(), cloud_runner_state_1.CloudRunnerState.defaultSecrets));
cloud_runner_logger_1.default.logWithTime('Build time'); cloud_runner_logger_1.default.logWithTime('Build time');
yield new compression_step_1.CompressionStep().run(new cloud_runner_step_state_1.CloudRunnerStepState('alpine', cloud_runner_state_1.CloudRunnerState.readBuildEnvironmentVariables(), cloud_runner_state_1.CloudRunnerState.defaultSecrets)); yield new compression_step_1.CompressionStep().run(new cloud_runner_step_state_1.CloudRunnerStepState('alpine', cloud_runner_state_1.CloudRunnerState.readBuildEnvironmentVariables(), cloud_runner_state_1.CloudRunnerState.defaultSecrets));
cloud_runner_logger_1.default.logWithTime('Compression time'); cloud_runner_logger_1.default.logWithTime('Compression time');

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -33,7 +33,7 @@ export class BuildAutomationWorkflow implements WorkflowInterface {
} }
CloudRunnerLogger.logWithTime('Pre build step(s) time'); CloudRunnerLogger.logWithTime('Pre build step(s) time');
new BuildStep().run( await new BuildStep().run(
new CloudRunnerStepState( new CloudRunnerStepState(
baseImage, baseImage,
CloudRunnerState.readBuildEnvironmentVariables(), CloudRunnerState.readBuildEnvironmentVariables(),