s452094-plots/Jenkinsfile

12 lines
178 B
Groovy

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