s452094-plots/Jenkinsfile

17 lines
281 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Generate plot') {
steps {
sh label: '', script: 'python plot.py'
}
}
stage('Archive') {
steps {
archiveArtifacts 'plot.png'
}
}
}
}