pipeline { agent { dockerfile true } stages { stage('Hello') { steps { git 'https://git.wmi.amu.edu.pl/s416267/s416267-mlworkshops' copyArtifacts filter: 'srr.txt, wer.txt', fingerprintArtifacts: true, optional: true, projectName: 's416267-metrics', target: './' } } stage('Wykresy') { step{ sh('chmod +x ./plots.sh') sh('./lots.sh wer srr') archiveArtifacts 'wer.png' archiveArtifacts 'srr.png' } } } }