s407259-mlworkshops/Jenkinsfile
2019-05-16 12:38:06 +02:00

23 lines
635 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 's407259-metrics',
target: 's407259-matrics-data']);
sh 'git --version'
sh 'git checkout'
sh 'python3 generate_plot.py'
archiveArtifacts artifacts: 'historical_srr_plot.png'
archiveArtifacts artifacts: 'historical_wer_mean_plot.png'
}
}
}
}
}