pipeline { agent { dockerfile true } parameters{ buildSelector( defaultSelector: lastSuccessful(), description: 'Which build to use for copying artifacts', name: 'WHICH_BUILD' ) string( defaultValue: '10', description: 'batch size', name: 'BATCH_SIZE' ) string( defaultValue: '5', description: 'epochs', name: 'EPOCHS' ) } stages { stage('copyArtifacts') { steps { copyArtifacts fingerprintArtifacts: true, projectName: 's434732-create-dataset', selector: buildParameter('WHICH_BUILD') } } stage('Run_script'){ steps{ sh 'python3 "./training.py" ${BATCH_SIZE} ${EPOCHS} > model_pred.txt' } } stage('archiveArtifacts') { steps{ archiveArtifacts 'model_pred.txt' archiveArtifacts 'DEATH_EVENT.pth' } } } post { success { build job: 's434732-evaluation/master' mail body: 'SUCCESS TRAINING', subject: 's434732', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms' } failure { mail body: 'FAILURE TRAINING', subject: 's434732', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms' } } }