This commit is contained in:
2024-12-19 14:58:45 +03:00
parent 51f3eda2a8
commit 1d84f21fe4

3
Jenkinsfile vendored
View File

@@ -33,7 +33,7 @@ def build_docker(dist, release_dir, is_testing, is_debug) {
return "\n - ${image_name}"
}
properties([
[$class: 'BuildDiscarderProperty', strategy: [$class: 'LogRotator', artifactDaysToKeepStr: '', artifactNumToKeepStr: '10', daysToKeepStr: '', numToKeepStr: '2000']],
buildDiscarder(logRotator(numToKeepStr: "2000", artifactNumToKeepStr: "10")),
parameters([
booleanParam(name: 'Debug', defaultValue: false, description: 'Build debug version')
]),
@@ -65,6 +65,7 @@ node {
pl.forEach ({ dist ->
_msg += build_docker(dist, rel_dir, is_testing, is_debug)
},
whiteList: ["astra"],
stageSuffix: "-shstk",
ondemand: true
)