mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
18 lines
456 B
Groovy
18 lines
456 B
Groovy
import groovy.transform.Field
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
|
|
void call(Map parameters = [:]) {
|
|
|
|
handlePipelineStepErrors (stepName: STEP_NAME, stepParameters: parameters) {
|
|
|
|
def cred = [
|
|
type: 'usernamePassword',
|
|
id: 'malwareScanCredentialsId',
|
|
env: ['PIPER_username', 'PIPER_password']
|
|
]
|
|
|
|
piperExecuteBin parameters, STEP_NAME, "metadata/${STEP_NAME}.yaml", [cred]
|
|
}
|
|
}
|