Jenkinsfile added

This commit is contained in:
Damian Michalski 2020-04-03 18:47:37 +02:00
parent 6c076f9260
commit 5c9e7018e7

12
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent any
stages {
stage('Generate plot') {
steps {
sh label: '', script: 'python plot.py'
}
}
}
}