mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-11-28 08:49:44 +02:00
15 lines
368 B
Groovy
15 lines
368 B
Groovy
import groovy.transform.Field
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
|
|
void call(Map parameters = [:]) {
|
|
|
|
def cred = [
|
|
type: 'usernamePassword',
|
|
id: 'malwareScanCredentialsId',
|
|
env: ['PIPER_username', 'PIPER_password']
|
|
]
|
|
|
|
piperExecuteBin parameters, STEP_NAME, "metadata/${STEP_NAME}.yaml", [cred]
|
|
}
|