Skip to content

Commit 56ed11e

Browse files
committed
Do no longer copy artifacts around in build and upload trigger job
The artifacts are not used by this job CMK-24355 Change-Id: I090cc4a44037620fedda6d867d2053cf3b61310f (cherry picked from commit a1eb25f)
1 parent ca84c53 commit 56ed11e

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

buildscripts/scripts/trigger-build-upload-cmk-distro-package.groovy

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,13 @@ def main() {
9797
notify.notify_maintainer_of_package("${TEAM_CI_MAIL}".split(","), edition, "${build_instance.absoluteUrl}")
9898
}
9999

100+
// Without this stage in place the whole job would fail, unclear why
100101
smart_stage(
101-
name: "Copy artifacts",
102+
name: "Say hello",
102103
condition: build_instance,
103104
raiseOnError: true,
104105
) {
105-
copyArtifacts(
106-
projectName: "${branch_base_folder}/builders/build-cmk-distro-package",
107-
selector: specific(build_instance.getId()),
108-
target: "${checkout_dir}/${download_dir}/",
109-
fingerprintArtifacts: true,
110-
)
106+
sh("echo hello");
111107
}
112108
}]
113109
}

0 commit comments

Comments
 (0)