fixed Jenkinsfile-stats

This commit is contained in:
s464906 2024-03-26 22:36:09 +01:00
parent 6ded7390ef
commit 112295464c

View File

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