diff options
-rw-r--r-- | jenkins/dispatch.groovy | 1 | ||||
-rw-r--r-- | manifests/test.yaml | 16 |
2 files changed, 9 insertions, 8 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index c710597..bde59dc 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -246,6 +246,7 @@ node(LABEL) { def artifacts_present = sh(script: "ls ${this.conda_build_output_dir}/*.tar.bz2 >/dev/null 2>&1", returnStatus: true) + println("artifacts present = ${artifacts_present}") if (artifacts_present == "0") { sh(script: "rsync -avzr ${this.conda_build_output_dir}/*.tar.bz2 ${publication_path}") // Use a lock file to prevent two dispatch jobs that finish at the same diff --git a/manifests/test.yaml b/manifests/test.yaml index 41aa167..4d6806e 100644 --- a/manifests/test.yaml +++ b/manifests/test.yaml @@ -4,14 +4,14 @@ numpy_version: 1.13 packages: - costools - cfitsio - - ds9 - - crds - - cube-tools - - sphinxcontrib-programoutput - - pyds9 - - wcstools - - webbpsf - +# - ds9 +# - crds +# - cube-tools +# - sphinxcontrib-programoutput +# - pyds9 +# - wcstools +# - webbpsf +# # - mosviz # - specutils # - glueviz |