s407259-mlworkshops/Jenkinsfile

23 lines
635 B
Plaintext
Raw Normal View History

2019-04-26 11:01:34 +02:00
pipeline {
2019-04-26 12:20:08 +02:00
agent { dockerfile true }
2019-04-26 11:01:34 +02:00
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
2019-05-16 10:33:28 +02:00
projectName: 's407259-metrics',
target: 's407259-matrics-data']);
2019-04-26 12:52:37 +02:00
sh 'git --version'
sh 'git checkout'
2019-05-16 10:33:28 +02:00
sh 'python3 generate_plot.py'
2019-05-16 12:38:06 +02:00
archiveArtifacts artifacts: 'historical_srr_plot.png'
archiveArtifacts artifacts: 'historical_wer_mean_plot.png'
2019-05-16 12:32:08 +02:00
2019-05-16 10:11:25 +02:00
}
2019-04-26 11:00:51 +02:00
}
}
2019-04-26 11:01:34 +02:00
}
}