pipeline { agent any parameters{ string( defaultValue: 'mikolaj2', description: 'Kaggle username', name: 'KAGGLE_USERNAME' ) string( defaultValue: '20', description: 'Value for head command', name: 'CUTOFF' ) 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("Check out from version control") { steps { checkout scm } } stage("Shell Scripts") { steps { sh "chmod u+x ./startscript1.sh" sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${env.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh" archiveArtifacts artifacts: 'data.txt' } } } }