s416267-mlworkshops/JenkinsfilePlots
Kamil Paprota 203fa94245 metryki
2020-04-03 16:53:46 +02:00

20 lines
508 B
Plaintext

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') {
steps{
sh('chmod +x ./plots.sh')
sh('./plots.sh wer srr')
archiveArtifacts 'wer.png'
archiveArtifacts 'srr.png'
}
}
}
}