pipeline { agent any parameters { string ( defaultValue: 'worldwidepaniel', 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') { steps { checkout scm sh 'ls -las' } } stage('Download dataset and manipulate dataset') { withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { sh "./data_download.sh" } } } }