1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/vars/artifactPrepareVersion.groovy

25 lines
970 B
Groovy
Raw Normal View History

import com.sap.piper.BuildTool
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']],
]
// Tell dockerExecuteOnKubernetes (if used) to stash also .-folders
// This preserves the '.git' folder into the pod and restores it from the pod with the created tag.
parameters['stashNoDefaultExcludes'] = true
parameters = DownloadCacheUtils.injectDownloadCacheInParameters(script, parameters, BuildTool.MAVEN)
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials, false, false, true)
}