s426274-mlworkshops/JenkinsfilePlots
2020-04-22 01:29:57 +02:00

35 lines
1.0 KiB
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: '', script: 'chmod a+rwx ./wykres.py'
sh label: 'WER plot', script: './wykres.py wer.txt wer.png'
sh label: 'SRR plot', script: './wykres.py srr.txt srr.png'
}
}
stage('ArchiveArtifacts')
{
steps {
archiveArtifacts 'wer.png'
archiveArtifacts 'srr.png'
}
}
}
}