This commit is contained in:
s444417 2022-03-24 19:07:58 +01:00
parent 88094a897f
commit f380afc840

34
Jenkinsfile vendored
View File

@ -1,23 +1,21 @@
pipeline { pipeline {
agent any agent any
options { parameters{
parameters{ password(
password( defaultValue: '',
defaultValue: '', description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', name: 'KAGGLE_KEY'
name: 'KAGGLE_KEY' )
) string(
string( defaultValue: 'mikolaj2',
defaultValue: 'mikolaj2', description: 'Kaggle username',
description: 'Kaggle username', name: 'KAGGLE_USERNAME'
name: 'KAGGLE_USERNAME' )
) string(
string( defaultValue: '',
defaultValue: '', description: 'Value for head command',
description: 'Value for head command', name: 'CUTOFF'
name: 'CUTOFF' )
)
}
} }
environment { environment {
KAGGLE_USERNAME="$params.KAGGLE_USERNAME" KAGGLE_USERNAME="$params.KAGGLE_USERNAME"