Consider this snippet from a pipeline definition:
definitions:
caches:
sonar: ~/.sonar/cache
steps:
- step:
caches:
- sonar
script:
- pipe: sonarsource/sonarcloud-scan:1.0.1
The `sonarcloud-scan` pipe downloads language analyzers and plugins from SonarCloud, which are used to analyze the source code. These files are not small, and there are many of them, so downloading takes non-trival amount of time. On every execution, the scanner looks at the cache directory, and only downloads files that have changed since the last run. And they don't change very often, so a good candidate for caching.
The `caches` definition in the above snippet works fine when running the scanner in the pipeline. But not when running the pipe (which inside of it runs the scanner).
Looking at the output of the pipe, in the argument list of the `docker` command I don't see values like `--volume=...` related to caches, so it seems to me the defined cache is not available to the pipe.
Can you please confirm that:
Hi @janos-ss ,
Thanks for the suggestion. At the moment, we don't natively support caching in pipes. We created a feature request to gauge the interest of others in seeing the same thing: https://jira.atlassian.com/browse/BCLOUD-18478 I would recommend to comment and vote for it, so that we can prioritise it properly.
Thanks,
Raul
@Raul Gomis @janos-ss I just got an email announcing the release of a BitBucket Pipelines update that allows for smarter dependency caching.
https://bitbucket.org/blog/announcing-smarter-caches-bitbucket-pipelines
With this feature is it possible to cache the dependencies of the sonar scan pipe?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Miles Pucarelli , thanks for your comment.
Unfortunately, smarter dependency caching doesn't work with pipes yet. Please, subscribe to https://jira.atlassian.com/browse/BCLOUD-18478 for more news about adding support for caching in pipes.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.