diff options
| author | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2025-07-10 08:25:10 +0200 |
|---|---|---|
| committer | Czarek Nakamoto <cyjan@mrcyjanek.net> | 2025-07-10 08:25:10 +0200 |
| commit | 2595acb7764feadf9ba319a344220a67148f946a (patch) | |
| tree | 906c2a06c259869f9aa4201a499b9a7db72e8b72 /contrib/depends/Jenkinsfile | |
| parent | 30c4a102a5c8e1d059a46ed13a6b2c4abea82558 (diff) | |
feat: add make clean to contrib/depends and invoke it on CI to reduce SSH upload step time
Diffstat (limited to 'contrib/depends/Jenkinsfile')
| -rw-r--r-- | contrib/depends/Jenkinsfile | 6 |
1 files changed, 6 insertions, 0 deletions
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 |
