mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
36423eb78d
* Avoid potential collisions amongst steps * Improve code, move to JenkinsUtils * Improve code * Improve tests * Fix test * Add scope on golang side
49 lines
1.7 KiB
Groovy
49 lines
1.7 KiB
Groovy
import com.sap.piper.PiperGoUtils
|
|
import com.sap.piper.Utils
|
|
import com.sap.piper.JenkinsUtils
|
|
import groovy.transform.Field
|
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String METADATA_FILE = 'metadata/checkmarx.yaml'
|
|
|
|
//Metadata maintained in file project://resources/metadata/checkmarx.yaml
|
|
|
|
void call(Map parameters = [:]) {
|
|
handlePipelineStepErrors(stepName: STEP_NAME, stepParameters: parameters) {
|
|
|
|
def script = checkScript(this, parameters) ?: this
|
|
|
|
Map config
|
|
def utils = parameters.juStabUtils ?: new Utils()
|
|
parameters.juStabUtils = null
|
|
def jenkinsUtils = parameters.jenkinsUtilsStub ?: new JenkinsUtils()
|
|
parameters.jenkinsUtilsStub = null
|
|
|
|
new PiperGoUtils(this, utils).unstashPiperBin()
|
|
utils.unstash('pipelineConfigAndTests')
|
|
script.commonPipelineEnvironment.writeToDisk(script)
|
|
|
|
writeFile(file: METADATA_FILE, text: libraryResource(METADATA_FILE))
|
|
|
|
withEnv([
|
|
"PIPER_parametersJSON=${groovy.json.JsonOutput.toJson(parameters)}",
|
|
]) {
|
|
// get context configuration
|
|
config = readJSON (text: sh(returnStdout: true, script: "./piper getConfig --contextConfig --stepMetadata '${METADATA_FILE}'"))
|
|
|
|
// execute step
|
|
withCredentials([usernamePassword(
|
|
credentialsId: config.checkmarxCredentialsId,
|
|
passwordVariable: 'PIPER_password',
|
|
usernameVariable: 'PIPER_username'
|
|
)]) {
|
|
sh "./piper checkmarxExecuteScan"
|
|
}
|
|
|
|
jenkinsUtils.handleStepResults(STEP_NAME, true, false)
|
|
}
|
|
}
|
|
}
|