ci: bump archiving timeout, list artifacts (#6539)

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 <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-09-12 00:50:20 +02:00 committed by GitHub
parent a2a7cab76d
commit da48c6f3f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 7 deletions

18
ci/Jenkinsfile vendored
View File

@ -143,13 +143,17 @@ pipeline {
} } } }
} }
} }
post { always { timeout(5) { post {
archiveArtifacts( always { timeout(10) {
artifacts: '*.tar.gz', /* DEBUG: Show file sizes to catch too big ones. */
excludes: '**/geth-*.tar.gz', /* `scripts/geth_binaries.sh` */ sh 'ls -hl *.tar.gz'
allowEmptyArchive: true archiveArtifacts(
) artifacts: '*.tar.gz',
} } } excludes: '**/geth-*.tar.gz', /* `scripts/geth_binaries.sh` */
allowEmptyArchive: true
)
} }
}
} }
} }