mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-11-24 08:32:32 +02:00
3992f17b32
- NPMRegistry was always an empty string - MTA did not use npm registry
15 lines
518 B
Groovy
15 lines
518 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/mtaBuild.yaml'
|
|
|
|
void call(Map parameters = [:]) {
|
|
final script = checkScript(this, parameters) ?: this
|
|
parameters = DownloadCacheUtils.injectDownloadCacheInParameters(script, parameters, BuildTool.MTA)
|
|
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, [])
|
|
}
|