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:
parent
a2a7cab76d
commit
da48c6f3f4
|
@ -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
|
||||||
|
)
|
||||||
|
} }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue