pipeline { agent { dockerfile true } stages { stage('checkout') { steps { git 'https://git.wmi.amu.edu.pl/s434766/ium_434766.git' copyArtifacts fingerprintArtifacts: true, projectName: 's434766-create-dataset' copyArtifacts fingerprintArtifacts: true, projectName: 's434766-training' } } stage('Docker'){ steps{ sh 'python3 "./stroke-pytorch-eval.py" >> eval.txt' } } stage('archiveArtifacts') { steps { archiveArtifacts 'eval.txt' } post { success { emailext body: 'Evaluation of stroke predictions is finished', subject: 's434766 evaluation finished', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms' } } } } }