Open
Description
What is your suggestion?
While core.download:download_cache
is a great way to speed up the download step in CI workflows, it unfortunately only serves to speed up the download of common dependencies.
In more complex chains where you have several (dependent) jobs on a common CI infrastructure, it's likely that the package a previous job has just created and uploaded to a remote, will also be directly consumed by a dependent job. In this case, any freshly created artifact will always go the full round-trip of upload and download, even with a cache configured.
Ideally, the compressed package would be forked straight into the download_cache
(when configured), so that a following download of the new package is reduced to a noop.
Have you read the CONTRIBUTING guide?
- I've read the CONTRIBUTING guide