pipeline { agent { dockerfile true } stages { stage('checkoutGit') { steps { git 'https://git.wmi.amu.edu.pl/s426274/s426274-mlworkshops' } } stage('copyArtifacts') { steps { copyArtifacts filter: 'wer.txt', fingerprintArtifacts: true, projectName: 'Wojciech Ufnowski-metrics', selector: lastSuccessful(), target: './' copyArtifacts filter: 'srr.txt', fingerprintArtifacts: true, projectName: 'Wojciech Ufnowski-metrics', selector: lastSuccessful(), target: './' } } stage('Plots') { steps { sh label: '', script: 'chmod a+rwx ./wykres.py' sh label: 'WER plot', script: './wykres.py wer.txt wer.png' sh label: 'SRR plot', script: './wykres.py srr.txt srr.png' } } stage('ArchiveArtifacts') { steps { archiveArtifacts 'wer.png' archiveArtifacts 'srr.png' } } } }