diff --git a/Jenkinsfile b/Jenkinsfile index 36cf192..b15f3b1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { } stage('Plot') { steps { - echo nic + sh label: '', script: './plot.py' } } } diff --git a/plot.py b/plot.py new file mode 100644 index 0000000..3ac231a --- /dev/null +++ b/plot.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +def main(): + pass + + +if __name__ == "__main__": + main()