The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello @Nikhil ,
Welcome to Atlassian Community!
When you use caches in the pipelines, we are basically compressing the directory where your framework is saving the dependencies, uploading it to our infrastructure, and unzipping it in the same exact location for the subsequent builds. Since you are using the maven cache, the default cache directory is ~/.m2/repository. You can find the directory of the pre-defined caches in the following link :
Having said that, it's currently not possible to download caches, but you can see the current caches list when you access the Pipelines page and click on the Caches button in the top right corner.
We have a feature request though, to implement the ability to download the caches :
I would suggest adding your vote there and watching the ticket to receive first-hand updates whenever there's any progress.
As a workaround while this feature is not implemented, you can create an artifact for the same directory the cache is looking for, so you can download the artifact when the build completes. Please find the example below :
script:
- mvn build
artifacts: # defining the artifacts
- .m2/repository/**
This will create an artifact for all the files within the folder ~.m2/repository, which is the default cache directory for maven. The artifact will be made available to download in the Artifacts tab when the build completes.
More details on how artifacts work are outlined in the documentation below :
Hope that helps! Let me know in case you have any questions.
Thank you, @Nikhil .
Kind regards,
Patrik S
Beginning on April 4th, we will be implementing push limits. This means that your push cannot be completed if it is over 3.5 GB. If you do attempt to complete a push that is over 3.5 GB, it will fail...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.