mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
fix docs generation (#640)
This commit is contained in:
parent
54846ea0d6
commit
1e36df6a9c
@ -25,13 +25,13 @@ handlePipelineStepErrors (stepName: 'executeHealthCheck', stepParameters: parame
|
|||||||
|
|
||||||
If `echoDetails` is set to true the following information will be output to the console:
|
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 beginning: `--- Begin library step: \${stepName}.groovy ---`
|
||||||
1. Step end: `--- End library step: ${stepName}.groovy ---`
|
1. Step end: `--- End library step: \${stepName}.groovy ---`
|
||||||
1. Step errors:
|
1. Step errors:
|
||||||
|
|
||||||
```log
|
```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:
|
The following parameters were available to the step:
|
||||||
***
|
***
|
||||||
|
@ -4,6 +4,10 @@ import groovy.transform.Field
|
|||||||
|
|
||||||
@Field STEP_NAME = getClass().getName()
|
@Field STEP_NAME = getClass().getName()
|
||||||
|
|
||||||
|
@Field Set GENERAL_CONFIG_KEYS = []
|
||||||
|
|
||||||
|
@Field Set STEP_CONFIG_KEYS = []
|
||||||
|
|
||||||
@Field Set PARAMETER_KEYS = [
|
@Field Set PARAMETER_KEYS = [
|
||||||
/** Defines the name of the measurement which is written to the Influx database.*/
|
/** Defines the name of the measurement which is written to the Influx database.*/
|
||||||
'measurementName'
|
'measurementName'
|
||||||
|
@ -6,6 +6,10 @@ import groovy.transform.Field
|
|||||||
|
|
||||||
@Field STEP_NAME = getClass().getName()
|
@Field STEP_NAME = getClass().getName()
|
||||||
|
|
||||||
|
@Field Set GENERAL_CONFIG_KEYS = []
|
||||||
|
|
||||||
|
@Field Set STEP_CONFIG_KEYS = []
|
||||||
|
|
||||||
@Field Set PARAMETER_KEYS = [
|
@Field Set PARAMETER_KEYS = [
|
||||||
/** The url to the git repository of the pipeline to be loaded.*/
|
/** The url to the git repository of the pipeline to be loaded.*/
|
||||||
'repoUrl',
|
'repoUrl',
|
||||||
|
Loading…
Reference in New Issue
Block a user