Here is result tree on server after my script:
> pwd/opt/atlassian/pipelines/agent/build
> tree -d.
├── android-sdk-linux
│ ├── build-tools
│ │ └── 28.0.3
...
├── app
│ ├── build
...
└── readme8005 directories
Here is my script:
https://opatry.net/2017/11/06/bitbucket-pipelines-for-android/
In result:
Build teardownYou already have a 'gradle' cache so we won't create it again
Assembling contents of new cache 'android-sdk'
But in Pipelines -> Caches->Dependency caches :
Why pipelines didn't add `android-sdk` to cache?
As per https://confluence.atlassian.com/bitbucket/caching-dependencies-895552876.html, the compressed cache has to be under 1GB in size to be cached - you can test this in your step's script by compressing the directory yourself and seeing how big it is. There will be a message in the tear down saying the cache is being skipped if it is too big. Additionally it is only kept for 1 week and then we expire it, to make sure it is as up to date as possible. If either of these situations don't apply to you, it might be better to raise a support requests at https://support.atlassian.com/contact/ so we can help examine your build for the cause,
Hope this helps,
Matt Watson, Bitbucket Pipelines Development Manager
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.