mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
6520115950
* fix(fortifyExecuteScan): Propagate translation errors Force translation related errors to stop the execution of the step. * Extend testcase * Update fortifyExecuteScan.go * Fix fmt and test * Fix code * feat(fortifyExecuteScan): Create GitHub issue * Fix expectation * Fix fmt * Fix fmt add test * Added tests * Go fmt * Add switch * Rewrite githubCreateIssue * Fix tests * Added switch * Issue only in case of violations * Fix CPE reference * Add debug message to issue creation/update * Update fortifyExecuteScan.go * Add credential for GH to groovy wrapper * Update fortifyExecuteScan.go
19 lines
796 B
Groovy
19 lines
796 B
Groovy
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/fortifyExecuteScan.yaml'
|
|
|
|
//Metadata maintained in file project://resources/metadata/fortifyExecuteScan.yaml
|
|
|
|
void call(Map parameters = [:]) {
|
|
final script = checkScript(this, parameters) ?: this
|
|
parameters = DownloadCacheUtils.injectDownloadCacheInParameters(script, parameters, BuildTool.MAVEN)
|
|
|
|
List credentials = [[type: 'token', id: 'fortifyCredentialsId', env: ['PIPER_authToken']], [type: 'token', id: 'githubTokenCredentialsId', env: ['PIPER_githubToken']]]
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
|
}
|