You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.