mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
82 lines
2.6 KiB
Groovy
82 lines
2.6 KiB
Groovy
import com.sap.piper.ConfigurationLoader
|
|
import com.sap.piper.ConfigurationMerger
|
|
|
|
|
|
def call(Map parameters = [:]) {
|
|
|
|
def stepName = 'mtaBuild'
|
|
|
|
List parameterKeys = [
|
|
'buildTarget',
|
|
'mtaJarLocation'
|
|
]
|
|
|
|
List stepConfigurationKeys = [
|
|
'buildTarget'
|
|
]
|
|
|
|
List generalConfigurationKeys = [
|
|
'mtaJarLocation'
|
|
]
|
|
|
|
handlePipelineStepErrors (stepName: stepName, stepParameters: parameters) {
|
|
|
|
final script = parameters?.script ?: [commonPipelineEnvironment: commonPipelineEnvironment]
|
|
|
|
prepareDefaultValues script: script
|
|
|
|
final Map stepConfiguration = ConfigurationLoader.stepConfiguration(script, stepName)
|
|
final Map stepDefaults = ConfigurationLoader.defaultStepConfiguration(script, stepName)
|
|
final Map generalConfiguration = ConfigurationLoader.generalConfiguration(script)
|
|
final Map configuration = ConfigurationMerger.merge(
|
|
parameters, parameterKeys,
|
|
generalConfiguration, generalConfigurationKeys, [:],
|
|
stepConfiguration, stepConfigurationKeys, stepDefaults)
|
|
|
|
def mtaYaml = readYaml file: "${pwd()}/mta.yaml"
|
|
|
|
//[Q]: Why not yaml.dump()? [A]: This reformats the whole file.
|
|
sh "sed -ie \"s/\\\${timestamp}/`date +%Y%m%d%H%M%S`/g\" \"${pwd()}/mta.yaml\""
|
|
|
|
def id = mtaYaml.ID
|
|
if (!id) {
|
|
error "Property 'ID' not found in mta.yaml file at: '${pwd()}'"
|
|
}
|
|
|
|
def mtarFileName = "${id}.mtar"
|
|
|
|
def mtaJar = getMtaJar(stepName, configuration)
|
|
def buildTarget = configuration.buildTarget
|
|
|
|
sh """#!/bin/bash
|
|
export PATH=./node_modules/.bin:${PATH}
|
|
java -jar ${mtaJar} --mtar ${mtarFileName} --build-target=${buildTarget} build
|
|
"""
|
|
|
|
def mtarFilePath = "${pwd()}/${mtarFileName}"
|
|
script?.commonPipelineEnvironment?.setMtarFilePath(mtarFilePath)
|
|
|
|
return mtarFilePath
|
|
}
|
|
}
|
|
|
|
private getMtaJar(stepName, configuration) {
|
|
def mtaJarLocation = 'mta.jar' //default, maybe it is in current working directory
|
|
|
|
if(configuration?.mtaJarLocation){
|
|
mtaJarLocation = "${configuration.mtaJarLocation}/mta.jar"
|
|
echo "[$stepName] MTA JAR \"${mtaJarLocation}\" retrieved from configuration."
|
|
return mtaJarLocation
|
|
}
|
|
|
|
if(env?.MTA_JAR_LOCATION){
|
|
mtaJarLocation = "${env.MTA_JAR_LOCATION}/mta.jar"
|
|
echo "[$stepName] MTA JAR \"${mtaJarLocation}\" retrieved from environment."
|
|
return mtaJarLocation
|
|
}
|
|
|
|
echo "[$stepName] Using MTA JAR from current working directory."
|
|
return mtaJarLocation
|
|
}
|
|
|