1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00

fix docs generation (#640)

This commit is contained in:
Alejandra Ferreiro Vidal 2019-04-04 17:01:30 +02:00 committed by Christopher Fenner
parent 54846ea0d6
commit 1e36df6a9c
3 changed files with 11 additions and 3 deletions

View File

@ -25,13 +25,13 @@ handlePipelineStepErrors (stepName: 'executeHealthCheck', stepParameters: parame
If `echoDetails` is set to true the following information will be output to the console:
1. Step beginning: `--- Begin library step: ${stepName}.groovy ---`
1. Step end: `--- End library step: ${stepName}.groovy ---`
1. Step beginning: `--- Begin library step: \${stepName}.groovy ---`
1. Step end: `--- End library step: \${stepName}.groovy ---`
1. Step errors:
```log
----------------------------------------------------------
--- An error occurred in the library step: ${stepName}
--- An error occurred in the library step: \${stepName}
----------------------------------------------------------
The following parameters were available to the step:
***

View File

@ -4,6 +4,10 @@ import groovy.transform.Field
@Field STEP_NAME = getClass().getName()
@Field Set GENERAL_CONFIG_KEYS = []
@Field Set STEP_CONFIG_KEYS = []
@Field Set PARAMETER_KEYS = [
/** Defines the name of the measurement which is written to the Influx database.*/
'measurementName'

View File

@ -6,6 +6,10 @@ import groovy.transform.Field
@Field STEP_NAME = getClass().getName()
@Field Set GENERAL_CONFIG_KEYS = []
@Field Set STEP_CONFIG_KEYS = []
@Field Set PARAMETER_KEYS = [
/** The url to the git repository of the pipeline to be loaded.*/
'repoUrl',