From 580afdf396d06e1c2e67f9c58548e07b13aa6ddb Mon Sep 17 00:00:00 2001 From: s487179 Date: Fri, 14 Apr 2023 23:58:41 +0200 Subject: [PATCH] Fix Jenkinsfile datasetStats --- datasetStats/Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/datasetStats/Jenkinsfile b/datasetStats/Jenkinsfile index 10f47ba..8949bf6 100644 --- a/datasetStats/Jenkinsfile +++ b/datasetStats/Jenkinsfile @@ -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 {