23 lines
635 B
Groovy
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'
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|