This commit is contained in:
Jakub Zaręba 2023-03-27 22:10:49 +02:00
parent 3923d5c944
commit 5ae03b7c89

13
Jenkinsfile vendored
View File

@ -1,14 +1,6 @@
pipeline { pipeline {
agent any agent any
parameters {
string(
defaultValue: '50',
description: 'number of examples in dataset',
name: 'CUTOFF'
)
}
stages { stages {
stage('Preparation') { stage('Preparation') {
when { expression { true } } when { expression { true } }
@ -27,6 +19,11 @@ pipeline {
defaultValue: '', defaultValue: '',
description: 'Kaggle token taken from kaggle.json file', description: 'Kaggle token taken from kaggle.json file',
name: 'KAGGLE_KEY' name: 'KAGGLE_KEY'
),
string(
defaultValue: '50',
description: 'number of examples in dataset',
name: 'CUTOFF'
) )
]) ])
]) ])