mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-03-03 15:02:35 +02:00
Merge branch 'master' into whitesource-step
This commit is contained in:
commit
2ad3483233
@ -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:
|
||||
***
|
||||
|
@ -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'
|
||||
|
@ -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',
|
||||
|
Loading…
x
Reference in New Issue
Block a user