s452094-plots/Jenkinsfile

12 lines
178 B
Plaintext
Raw Normal View History

2020-04-03 18:47:37 +02:00
pipeline {
2020-04-03 18:52:06 +02:00
agent { dockerfile true }
2020-04-03 18:47:37 +02:00
stages {
stage('Generate plot') {
steps {
sh label: '', script: 'python plot.py'
}
}
}
}