From da48c6f3f4696e408820f719e96eab625af2e094 Mon Sep 17 00:00:00 2001 From: Jakub Date: Thu, 12 Sep 2024 00:50:20 +0200 Subject: [PATCH] ci: bump archiving timeout, list artifacts (#6539) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We suspect in some cases the archive is bigger than normally. I'm adding a listing of the file sizes to catch that. Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index cc521a31d..e92db446b 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -143,13 +143,17 @@ pipeline { } } } } - post { always { timeout(5) { - archiveArtifacts( - artifacts: '*.tar.gz', - excludes: '**/geth-*.tar.gz', /* `scripts/geth_binaries.sh` */ - allowEmptyArchive: true - ) - } } } + post { + always { timeout(10) { + /* DEBUG: Show file sizes to catch too big ones. */ + sh 'ls -hl *.tar.gz' + archiveArtifacts( + artifacts: '*.tar.gz', + excludes: '**/geth-*.tar.gz', /* `scripts/geth_binaries.sh` */ + allowEmptyArchive: true + ) + } } + } } }