From 5ae03b7c89085509eb6768843bfbc5c1c1f03d12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Zar=C4=99ba?= Date: Mon, 27 Mar 2023 22:10:49 +0200 Subject: [PATCH] asd --- Jenkinsfile | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bf4172b..b2eb00b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,14 +1,6 @@ pipeline { agent any - parameters { - string( - defaultValue: '50', - description: 'number of examples in dataset', - name: 'CUTOFF' - ) - } - stages { stage('Preparation') { when { expression { true } } @@ -27,6 +19,11 @@ pipeline { defaultValue: '', description: 'Kaggle token taken from kaggle.json file', name: 'KAGGLE_KEY' + ), + string( + defaultValue: '50', + description: 'number of examples in dataset', + name: 'CUTOFF' ) ]) ])