()
| 342 | } |
| 343 | |
| 344 | public skip(): void { |
| 345 | this.status = BuildStepStatus.SKIPPED; |
| 346 | this.ctx.logger.info( |
| 347 | { marker: BuildStepLogMarker.START_STEP }, |
| 348 | 'Executing build step "${this.displayName}"' |
| 349 | ); |
| 350 | this.ctx.logger.info(`Skipped build step "${this.displayName}"`); |
| 351 | this.ctx.logger.info( |
| 352 | { marker: BuildStepLogMarker.END_STEP, result: BuildStepStatus.SKIPPED }, |
| 353 | `Skipped build step "${this.displayName}"` |
| 354 | ); |
| 355 | } |
| 356 | |
| 357 | private getInterpolationContext(): JobInterpolationContext { |
| 358 | return { |
no outgoing calls
no test coverage detected