aboutsummaryrefslogtreecommitdiff
path: root/jenkins
diff options
context:
space:
mode:
authorMatt Rendina <mrendina@stsci.edu>2019-01-08 17:36:44 -0500
committerMatt Rendina <rendinam@users.noreply.github.com>2019-01-08 17:37:37 -0500
commit939818f66922f55d009cb7b6aa80d58978e9c464 (patch)
treee2deac9750c4554322e021c6ba71acc1907ed43f /jenkins
parentfe515620afebeb3210ccd7a910b9b94edb0a9274 (diff)
downloadbuild_control-939818f66922f55d009cb7b6aa80d58978e9c464.tar.gz
Cleanup1.0.33
Diffstat (limited to 'jenkins')
-rw-r--r--jenkins/dispatch.groovy3
1 files changed, 0 insertions, 3 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy
index 584352d..df6cba0 100644
--- a/jenkins/dispatch.groovy
+++ b/jenkins/dispatch.groovy
@@ -52,7 +52,6 @@ node(LABEL) {
// The directory deleted is the one named after the jenkins pipeline job.
deleteDir()
-
this.OSname = null
def uname = sh(script: "uname", returnStdout: true).trim()
if (uname == "Darwin") {
@@ -350,7 +349,6 @@ node(LABEL) {
}
stage ("Publish") {
- ////def publication_path = "${this.manifest.publication_root}/${this.CONDA_PLATFORM}"
// Copy and index packages if any were produced in the build.
def artifacts_present =
sh(script: "ls ${this.conda_build_output_dir}/*.tar.bz2 >/dev/null 2>&1",
@@ -361,7 +359,6 @@ node(LABEL) {
// Use a lock file to prevent two dispatch jobs that finish at the same
// time from trampling each other's indexing process.
def tries_remaining = this.max_publication_tries
- ////def lockfile = "${publication_path}/LOCK-Jenkins"
if ( fileExists(this.lockfile) ) {
println("Lockfile already exists, waiting for it to be released...")
while ( tries_remaining > 0) {