From b7b5b89969935acd57133f327f640dc1db657fed Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Sun, 2 Dec 2018 12:59:35 -0500 Subject: [PATCH] Jenkins compile only archive first level of binaries --- .ci/Jenkinsfile-compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/Jenkinsfile-compile b/.ci/Jenkinsfile-compile index 5eceaf088c..d7466aa083 100644 --- a/.ci/Jenkinsfile-compile +++ b/.ci/Jenkinsfile-compile @@ -179,7 +179,7 @@ def createBuildNode(Boolean archive, String docker_image, String target) { sh('ccache -s') sh('make sizes') if (archive) { - archiveArtifacts(allowEmptyArchive: false, artifacts: 'build/**/*.px4, build/**/*.elf, build/**/*.bin', fingerprint: true, onlyIfSuccessful: true) + archiveArtifacts(allowEmptyArchive: false, artifacts: 'build/*/*.px4, build/*/*.elf, build/*/*.bin', fingerprint: true, onlyIfSuccessful: true) } sh('make ' + target + ' package') archiveArtifacts(allowEmptyArchive: true, artifacts: 'build/*/*.tar.bz2', fingerprint: true, onlyIfSuccessful: true)