KAGGLE KEY

This commit is contained in:
Maciej 2021-03-28 23:06:58 +02:00
parent b0b9f6b6d2
commit 63dbafba8a

17
Jenkinsfile vendored
View File

@ -1,5 +1,22 @@
pipeline {
agent any
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'maciejsobkowiak,
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
),
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
])
])
}
stages {
stage('checkout: Check out from version control') {
steps {