diff options
author | Matt Rendina <mrendina@stsci.edu> | 2019-01-08 17:36:44 -0500 |
---|---|---|
committer | Matt Rendina <rendinam@users.noreply.github.com> | 2019-01-08 17:37:37 -0500 |
commit | 939818f66922f55d009cb7b6aa80d58978e9c464 (patch) | |
tree | e2deac9750c4554322e021c6ba71acc1907ed43f /jenkins | |
parent | fe515620afebeb3210ccd7a910b9b94edb0a9274 (diff) | |
download | build_control-939818f66922f55d009cb7b6aa80d58978e9c464.tar.gz |
Cleanup1.0.33
Diffstat (limited to 'jenkins')
-rw-r--r-- | jenkins/dispatch.groovy | 3 |
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) { |