add empty plot

This commit is contained in:
Dawid Jurkiewicz 2020-04-03 14:25:24 +02:00
parent 48094ceb54
commit 7dad242a99
2 changed files with 9 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -9,7 +9,7 @@ pipeline {
}
stage('Plot') {
steps {
echo nic
sh label: '', script: './plot.py'
}
}
}

8
plot.py Normal file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env python
def main():
pass
if __name__ == "__main__":
main()