13 lines
163 B
Plaintext
13 lines
163 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('Generate plot') {
|
||
|
steps {
|
||
|
sh label: '', script: 'python plot.py'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|