s426274-mlworkshops/JenkinsfilePlots

34 lines
997 B
Plaintext
Raw Normal View History

2020-04-22 00:45:51 +02:00
pipeline {
agent { dockerfile true }
stages {
stage('checkoutGit') {
steps {
git 'https://git.wmi.amu.edu.pl/s426274/s426274-mlworkshops'
}
}
2020-04-22 00:48:59 +02:00
2020-04-22 00:45:51 +02:00
stage('copyArtifacts') {
steps {
2020-04-22 00:52:34 +02:00
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: './'
2020-04-22 00:45:51 +02:00
}
}
2020-04-22 00:48:59 +02:00
2020-04-22 00:45:51 +02:00
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'
}
}
}
}