diff options
author | Matt Rendina <mrendina@stsci.edu> | 2017-05-23 13:36:22 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2017-05-23 13:36:22 -0400 |
commit | ce31017f54d291be2f45a58c060daa802abeffd0 (patch) | |
tree | 2d5c5f83d00bff8f9ba350f48e25dbad156085a9 /jenkins | |
parent | a826edb6858bfd7f20c2506c71dca7f110faeb2a (diff) | |
download | build_control-ce31017f54d291be2f45a58c060daa802abeffd0.tar.gz |
Test tool installation
Diffstat (limited to 'jenkins')
-rw-r--r-- | jenkins/dispatch.groovy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index 4f5551b..312e9d1 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -118,6 +118,7 @@ node(LABEL) { // Get build utilities dir(this.utils_dir) { git url: UTILS_REPO + sh "python setup.py install" } // Check for the availability of a download tool and then use it @@ -170,7 +171,7 @@ node(LABEL) { culled_option = "" } def build_list_file = "build_list" - cmd = "${this.utils_dir}/rambo.py" + cmd = "rambo" args = ["--platform ${this.CONDA_PLATFORM}", "--python ${PY_VERSION}", "--manifest manifests/${MANIFEST_FILE}", |