Fix Jenkinsfile datasetStats

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

View File

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