From d007dca146e6b853a2cdd77cb810f2669831376f Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Fri, 25 Sep 2020 08:04:51 +0000 Subject: [PATCH] Fix intermittent error with last copyartifacts change Apparently, sometimes, Jenkins can't find a toplevel job by "name", and one must specify an "absolute path" to the job by prefixing "/". This was causing ceph-dev builds to fail to find ceph-dev-setup, but changing to /ceph-dev-setup fixed the failure-to-find. It didn't affect ceph-dev-new. I've no idea why it affected one and not the other. Signed-off-by: Dan Mick --- ceph-dev-new-setup/config/definitions/ceph-dev-new-setup.yml | 2 +- ceph-dev-setup/config/definitions/ceph-dev-setup.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ceph-dev-new-setup/config/definitions/ceph-dev-new-setup.yml b/ceph-dev-new-setup/config/definitions/ceph-dev-new-setup.yml index 1667540c..c6eac25d 100644 --- a/ceph-dev-new-setup/config/definitions/ceph-dev-new-setup.yml +++ b/ceph-dev-new-setup/config/definitions/ceph-dev-new-setup.yml @@ -15,7 +15,7 @@ - github: url: https://github.com/ceph/ceph-ci - copyartifact: - projects: ceph-dev-new-build, ceph-dev-new + projects: /ceph-dev-new-build, /ceph-dev-new parameters: - string: diff --git a/ceph-dev-setup/config/definitions/ceph-dev-setup.yml b/ceph-dev-setup/config/definitions/ceph-dev-setup.yml index 54d9a12a..b7787e50 100644 --- a/ceph-dev-setup/config/definitions/ceph-dev-setup.yml +++ b/ceph-dev-setup/config/definitions/ceph-dev-setup.yml @@ -15,7 +15,7 @@ - github: url: https://github.com/ceph/ceph - copyartifact: - projects: ceph-dev-build, ceph-dev + projects: /ceph-dev-build, /ceph-dev parameters: - string: -- 2.39.5