fixed data

This commit is contained in:
Mateusz Kuc 2023-06-30 20:38:22 +02:00
parent bc4b2ca545
commit bcf4a41793
1 changed files with 17 additions and 0 deletions

View File

@ -7,6 +7,23 @@ pipeline {
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
string(
defaultValue: 'mattkrawl',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
)
password(
defaultValue: 'c21878a7463faa44361330ffbcea68a6',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
string(
defaultValue: '1000',
description: 'CUTOFF',
name: 'CUTOFF',
trim: false
)
}
stages {
stage('Checkout') {