Update 'Jenkinsfile'

This commit is contained in:
Wojciech Mikołajski 2023-04-14 03:32:30 +02:00
parent 3b4e88f9ca
commit 76bdf0e9e4

13
Jenkinsfile vendored
View File

@ -2,16 +2,17 @@ pipeline {
agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
parameters {
string(
string (
defaultValue: 'login',
description: 'Kaggle username',
description: 'Login to Kaggle',
name: 'KAGGLE_USERNAME',
trim: false
),
password(
)
password (
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
description: 'Password to Kaggle',
name: 'KAGGLE_KEY',
trim: false
)
}
stages {