s416251-mlworkshops/JenkinsfilePlots
2020-04-03 17:08:16 +02:00

20 lines
512 B
Plaintext

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