mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
101e8ec784
* TransportRequest: add UploadSOLMAN groovy step - groovy to go - use docker image in go - map credentials in go - generated yaml
18 lines
683 B
Groovy
18 lines
683 B
Groovy
import com.sap.piper.BuildTool
|
|
import groovy.transform.Field
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
import com.sap.piper.DownloadCacheUtils
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String METADATA_FILE = 'metadata/transportRequestUploadSOLMAN.yaml'
|
|
|
|
void call(Map parameters = [:]) {
|
|
final script = checkScript(this, parameters) ?: this
|
|
parameters = DownloadCacheUtils.injectDownloadCacheInParameters(script, parameters, BuildTool.MTA)
|
|
|
|
List credentials = [
|
|
[type: 'usernamePassword', id: 'uploadCredentialsId', env: ['PIPER_username', 'PIPER_password']]
|
|
]
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
|
}
|