s426274-mlworkshops/JenkinsfilePlots
2020-04-22 00:52:34 +02:00

34 lines
997 B
Plaintext

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: 'WER plot', script: './wykresy.py wer.txt wer.png'
sh label: 'SRR plot', script: './wykresy.py srr.txt srr.png'
}
}
stage('ArchiveArtifacts')
{
steps {
archiveArtifacts 'wer.png'
archiveArtifacts 'srr.png'
}
}
}
}