diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-09-06 11:38:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-06 11:38:51 -0400 |
commit | d27ff846a14a658de03548aa0920a3eee160db2c (patch) | |
tree | aa587c12c96a84943bfac7a0b78995578061e3eb /jenkins/dispatch.groovy | |
parent | edbad1a9da616e61e1c2f13bcc905ce010f7e904 (diff) | |
parent | c8b8cda793ce3902ab1d1831959932730a398638 (diff) | |
download | build_control-d27ff846a14a658de03548aa0920a3eee160db2c.tar.gz |
Merge pull request #30 from rendinam/numpy_matrix0.2.2
Numpy 'matrix build' support; channel access in test stage
Diffstat (limited to 'jenkins/dispatch.groovy')
-rw-r--r-- | jenkins/dispatch.groovy | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index 3e17ac1..80cfe89 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" + @@ -211,6 +212,7 @@ node(LABEL) { cmd = "rambo" args = ["--platform ${this.CONDA_PLATFORM}", "--python ${PY_VERSION}", + "--numpy ${NUMPY_VERSION}", "--manifest manifests/${MANIFEST_FILE}", "--file ${build_list_file}", "${culled_option}", @@ -237,8 +239,7 @@ 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: 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)], |