mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
f9f0cbfd33
Co-authored-by: Philipp Stehle <philipp.stehle@sap.com>
56 lines
1.8 KiB
Groovy
56 lines
1.8 KiB
Groovy
import static com.sap.piper.Prerequisites.checkScript
|
|
import com.sap.piper.ConfigurationHelper
|
|
import com.sap.piper.JenkinsUtils
|
|
import com.sap.piper.Utils
|
|
import groovy.transform.Field
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String METADATA_FILE = 'metadata/hadolintExecute.yaml'
|
|
|
|
@Field Set GENERAL_CONFIG_KEYS = []
|
|
@Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus([
|
|
'qualityGates',
|
|
'reportFile',
|
|
'reportName'
|
|
])
|
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
|
|
|
|
void call(Map parameters = [:]) {
|
|
final script = checkScript(this, parameters) ?: null
|
|
List credentialInfo = [
|
|
[type: 'usernamePassword', id: 'configurationCredentialsId', env: ['PIPER_configurationUsername', 'PIPER_configurationPassword']],
|
|
]
|
|
|
|
issuesWrapper(parameters, script){
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentialInfo)
|
|
}
|
|
}
|
|
|
|
def issuesWrapper(Map parameters = [:], Script script, Closure body){
|
|
String stageName = parameters.stageName ?: env.STAGE_NAME
|
|
// load default & individual configuration
|
|
Map config = ConfigurationHelper.newInstance(this)
|
|
.loadStepDefaults([:], stageName)
|
|
.mixinGeneralConfig(script.commonPipelineEnvironment, GENERAL_CONFIG_KEYS)
|
|
.mixinStepConfig(script.commonPipelineEnvironment, STEP_CONFIG_KEYS)
|
|
.mixinStageConfig(script.commonPipelineEnvironment, stageName, STEP_CONFIG_KEYS)
|
|
.mixin(parameters, PARAMETER_KEYS)
|
|
.use()
|
|
|
|
try {
|
|
body()
|
|
} finally {
|
|
recordIssues(
|
|
blameDisabled: true,
|
|
enabledForFailure: true,
|
|
aggregatingResults: false,
|
|
qualityGates: config.qualityGates,
|
|
tool: checkStyle(
|
|
id: config.reportName,
|
|
name: config.reportName,
|
|
pattern: config.reportFile
|
|
)
|
|
)
|
|
}
|
|
}
|