From 7dad242a991bb1ebc1a310e7375922929f46f59f Mon Sep 17 00:00:00 2001 From: Dawid Jurkiewicz Date: Fri, 3 Apr 2020 14:25:24 +0200 Subject: [PATCH] add empty plot --- Jenkinsfile | 2 +- plot.py | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 plot.py 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()