fixed Jenkinsfile-stats

This commit is contained in:
s464906 2024-03-26 22:36:09 +01:00
parent 6ded7390ef
commit 112295464c
1 changed files with 13 additions and 3 deletions

View File

@ -1,9 +1,19 @@
pipeline {
agent any
parameters {
choice(name: 'BUILD_SELECTOR', choices: '', description: 'Which build to use for copying artifacts')
}
parameters{
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
string(
defaultValue: '1000',
description: 'CUTOFF',
name: 'CUTOFF',
trim: false
)
}
stages {
stage('Copy artifacts') {