aboutsummaryrefslogtreecommitdiff
path: root/jenkins/package_builder.groovy
diff options
context:
space:
mode:
authorMatt Rendina <rendinam@users.noreply.github.com>2017-04-24 15:23:30 -0400
committerGitHub <noreply@github.com>2017-04-24 15:23:30 -0400
commit9e3af5b2c3f17190c6a62440b153a52f80d2a2d9 (patch)
treee2d509a97ee580881f0ed57c84d75c34afb06296 /jenkins/package_builder.groovy
parentad13f9a34cf6c6309f303fc09cda8dfcbac440a3 (diff)
parent9cd9a4f9e8cead821bb6750ae26a612cfded443d (diff)
downloadbuild_control-9e3af5b2c3f17190c6a62440b153a52f80d2a2d9.tar.gz
Merge pull request #10 from rendinam/flags_and_patching
Flags and patching update, misc manifest and parameter updates
Diffstat (limited to 'jenkins/package_builder.groovy')
-rw-r--r--jenkins/package_builder.groovy6
1 files changed, 3 insertions, 3 deletions
diff --git a/jenkins/package_builder.groovy b/jenkins/package_builder.groovy
index 9f06ac7..3772b66 100644
--- a/jenkins/package_builder.groovy
+++ b/jenkins/package_builder.groovy
@@ -33,6 +33,8 @@ node(this.label) {
"--python=${this.py_version}",
"--numpy=${this.numpy_version}",
"--skip-existing",
+ "--override-channels",
+ "--channel defaults",
"--dirty"]
for (arg in args) {
build_cmd = "${build_cmd} ${arg}"
@@ -48,10 +50,8 @@ node(this.label) {
stage("Test") {
build_cmd = cmd
args = ["--test",
- "--no-anaconda-upload",
"--python=${this.py_version}",
- "--numpy=${this.numpy_version}",
- "--skip-existing"]
+ "--numpy=${this.numpy_version}"]
for (arg in args) {
build_cmd = "${build_cmd} ${arg}"
}