mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
3f1a9d004a
* Allow proper usage of resilience feature in golang steps
19 lines
701 B
Groovy
19 lines
701 B
Groovy
import com.sap.piper.DownloadCacheUtils
|
|
import groovy.transform.Field
|
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String METADATA_FILE = 'metadata/versioning.yaml'
|
|
|
|
void call(Map parameters = [:]) {
|
|
final script = checkScript(this, parameters) ?: this
|
|
|
|
List credentials = [
|
|
[type: 'ssh', id: 'gitSshKeyCredentialsId'],
|
|
[type: 'usernamePassword', id: 'gitHttpsCredentialsId', env: ['PIPER_username', 'PIPER_password']],
|
|
]
|
|
parameters = DownloadCacheUtils.injectDownloadCacheInMavenParameters(script, parameters)
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials, false, false, true)
|
|
}
|