From 2595acb7764feadf9ba319a344220a67148f946a Mon Sep 17 00:00:00 2001 From: Czarek Nakamoto Date: Thu, 10 Jul 2025 08:25:10 +0200 Subject: feat: add make clean to contrib/depends and invoke it on CI to reduce SSH upload step time --- contrib/depends/Jenkinsfile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'contrib/depends/Jenkinsfile') diff --git a/contrib/depends/Jenkinsfile b/contrib/depends/Jenkinsfile index 8d5e50b..e16b057 100644 --- a/contrib/depends/Jenkinsfile +++ b/contrib/depends/Jenkinsfile @@ -43,6 +43,9 @@ pipeline { post { always { script { + dir('contrib/depends') { + sh "make clean" + } def targets = params.LINUX_TARGETS.split(',').collect { it.trim() } for (target in targets) { archiveArtifacts artifacts: "contrib/depends/built/${target}/*/*.tar.gz*", allowEmptyArchive: true @@ -76,6 +79,9 @@ pipeline { post { always { script { + dir('contrib/depends') { + sh "make clean" + } def targets = params.DARWIN_TARGETS.split(',').collect { it.trim() } for (target in targets) { archiveArtifacts artifacts: "contrib/depends/built/${target}/*/*.tar.gz*", allowEmptyArchive: true -- cgit v1.2.3