Fix Jenkinsfile datasetStats

This commit is contained in:
s487179 2023-04-14 23:58:41 +02:00
parent 31ea24ceef
commit 580afdf396

View File

@ -1,11 +1,14 @@
pipeline {
agent any
parameters {
choice(
name: 'BUILD_SELECTOR',
choices: ['lastSuccessfulBuild()', 'lastStableBuild()', 'specificBuild(123)', 'tags(\'release-*\')'],
choice(
name: 'BUILD_SELECTOR',
choices: ['lastSuccessfulBuild()', 'lastStableBuild()', 'specificBuild(123)', 'tags(\'release-*\')'],
description: 'Which build to use for copying artifacts',
defaultVaue: 'lastSuccessfulBuild()'
defaultValue: 'lastSuccessfulBuild()'
)
}
stages {