diff --git a/Jenkinsfile b/Jenkinsfile index fa7e402..fcab652 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,7 +6,7 @@ pipeline { 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', @@ -18,12 +18,12 @@ pipeline { steps { echo 'Hello World' } - }, + } stage("Checkout git") { steps { checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's444380', url: 'https://git.wmi.amu.edu.pl/s444380/ium_444380.git']]]) } - }, + } stage("Download data") { withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {