12 lines
178 B
Groovy
12 lines
178 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Generate plot') {
|
|
steps {
|
|
sh label: '', script: 'python plot.py'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|