pipeline { agent { docker { image 'mikolajk/ium:latest' } } 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' ) } options { copyArtifactPermission('s444417-training'); } stages { stage("Check out from version control") { steps { checkout scm } } stage("Shell Scripts") { steps { // sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME} KAGGLE_KEY=${params.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh" // sh 'ls -la' sh 'unzip -o house-price-dataset.zip' sh 'python3 ./src/task1python.py' archiveArtifacts 'Participants_Data_HPP/**/*.*' } } stage ('Starting train job') { steps { build job: 's444417-training/master', wait: false } } } }