[DO-273] add svace analyze pipeline (!16)

Reviewed-on: https://git.avroid.tech/DevOps/jenkins-pipelines/pulls/16
Reviewed-by: Andrey Danin <andrey.danin@avroid.tech>
Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech>
Co-committed-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech>
This commit is contained in:
aleksandr.vodyanov
2024-02-22 15:31:40 +03:00
committed by Aleksandr Vodyanov
parent ce9e9cd67a
commit 87ad52f470
4 changed files with 130 additions and 4 deletions

View File

@@ -0,0 +1,34 @@
pipelineJob('DevSecOps/svace_analyze') {
parameters {
string {
description('Git project url')
name('GIT_PROJECT')
defaultValue('')
}
string {
description('Git project branch')
name('BRANCH')
defaultValue('')
}
string {
description('Link with build results')
name('SVACE_BUILD_RESULTS_LINK')
defaultValue('')
}
}
definition {
cpsScm {
scm {
git {
remote {
url("${JENKINS_GIT_REPOSITORY_URL}/DevOps/jenkins-pipelines.git")
credentials("${JENKINS_GIT_CREDENTIALS_HTTP}")
}
branch('master')
}
}
scriptPath('pipelines/DevSecOps/svace-analyze.groovy')
}
}
}