diff options
author | Matt Rendina <mrendina@stsci.edu> | 2017-09-05 17:27:35 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2017-09-05 17:27:35 -0400 |
commit | 9c948b7080834c91d52e0bf70b78aff0facda733 (patch) | |
tree | 62bb40bc077780f5bdde47a76a36c1bb7e53edfb /jenkins/dispatch.groovy | |
parent | 8554f6dc67e19618d3d69ba315ad7a2c04ba83a2 (diff) | |
download | build_control-9c948b7080834c91d52e0bf70b78aff0facda733.tar.gz |
Add numpy parameter to job suite generation 'matrix'
Diffstat (limited to 'jenkins/dispatch.groovy')
-rw-r--r-- | jenkins/dispatch.groovy | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index 3e17ac1..9fcf805 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -101,6 +101,7 @@ node(LABEL) { "LABEL: ${LABEL}\n" + "env.NODE_NAME: ${env.NODE_NAME}\n" + "PY_VERSION: ${PY_VERSION}\n" + + "NUMPY_VERSION: ${NUMPY_VERSION}\n" + "MANIFEST_FILE: ${MANIFEST_FILE}\n" + "CONDA_VERSION: ${CONDA_VERSION}\n" + "CONDA_BUILD_VERSION: ${CONDA_BUILD_VERSION}\n" + @@ -237,8 +238,9 @@ node(LABEL) { string(name: "build_control_repo", value: BUILD_CONTROL_REPO), string(name: "build_control_branch", value: BUILD_CONTROL_BRANCH), string(name: "py_version", value: PY_VERSION), - string(name: "numpy_version", - value: "${this.manifest.numpy_version}"), + //string(name: "numpy_version", + // value: "${this.manifest.numpy_version}"), + string(name: "numpy_version", value: NUMPY_VERSION), string(name: "parent_workspace", value: env.WORKSPACE), string(name: "cull_manifest", value: this.cull_manifest), string(name: "channel_URL", value: this.manifest.channel_URL)], |