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' ) ]) ])