Merge pull request 'tmp' (#272) from master into release
Some checks failed
SHS Gitea/shstk/pipeline/head Something is wrong with the build of this commit

Reviewed-on: #272
This commit was merged in pull request #272.
This commit is contained in:
2024-12-19 14:59:01 +03:00

3
Jenkinsfile vendored
View File

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