ium_470618/JenkinsfileEval
gedin 1b1581ac7e
Some checks failed
s470618-evaluation/pipeline/head There was a failure building this commit
jenkinsfile for eval copy
2023-05-24 17:14:20 +02:00

20 lines
669 B
Plaintext

node {
stage('Preparation') {
checkout scm
copyArtifacts projectName: 's470618-metrics/master', filter: 'metrics.txt', fingerprintArtifacts: true, selector: lastSuccessful(), optional: true, target: './train-eval'
copyArtifacts projectName: 's470618-training', filter: '*.pt', fingerprintArtifacts: true, selector: lastSuccessful(), target: './train-eval'
}
stage('Evaluate metrics') {
sh "pip install matplotlib"
sh "cd train-eval && ./eval.py"
sh "./plot_metrics.py"
}
stage('artifacts') {
echo 'saving artifacts'
archiveArtifacts 'metrics.txt', 'prediction.tsv', 'metrics.png'
}
}