diff options
author | Matt Rendina <mrendina@stsci.edu> | 2019-04-12 13:39:42 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2019-04-12 13:39:42 -0400 |
commit | d76d2e8ab946b6ce50a319cf36add2be519277a7 (patch) | |
tree | b50196e92779f07e50784e522363d66c001de891 | |
parent | b8106f2b9cb4412889604e19a29a4474aa261275 (diff) | |
download | delivery_control-d76d2e8ab946b6ce50a319cf36add2be519277a7.tar.gz |
-rw-r--r-- | deliver.groovy | 3 | ||||
-rwxr-xr-x | mktestenv.sh | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/deliver.groovy b/deliver.groovy index b94330b..8fb72a9 100644 --- a/deliver.groovy +++ b/deliver.groovy @@ -27,6 +27,7 @@ def readYaml(data) { def gen_specfiles(label, run_tests) { node(label) { + timestamps { // Delete any existing job workspace directory contents. // The directory deleted is the one named after the jenkins pipeline job. @@ -265,7 +266,7 @@ def gen_specfiles(label, run_tests) { sh "rsync -avzr hstdp*.txt ${USERNAME}@${hostname}:${output_dir}" } } - + } // end timestamps } // end node() } diff --git a/mktestenv.sh b/mktestenv.sh index 4676787..6e23104 100755 --- a/mktestenv.sh +++ b/mktestenv.sh @@ -23,6 +23,8 @@ pkgs="" scriptname=$(basename $0) +# Command line argument handling +# # Display help text when no arguments are supplied. if [[ $# -eq 0 ]]; then |