mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
14 lines
403 B
Groovy
14 lines
403 B
Groovy
|
import groovy.transform.Field
|
||
|
import com.sap.piper.JenkinsUtils
|
||
|
|
||
|
@Field String STEP_NAME = getClass().getName()
|
||
|
@Field String METADATA_FILE = 'metadata/tmsExport.yaml'
|
||
|
|
||
|
void call(Map parameters = [:]) {
|
||
|
List credentials = [
|
||
|
[type: 'token', id: 'credentialsId', env: ['PIPER_tmsServiceKey']]
|
||
|
]
|
||
|
|
||
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials, false, false, true)
|
||
|
}
|