Hello,
I am trying to run SonarCloud on a javascript project with Bitbucket Pipeline.
My Pipeline is very easy:
steps:
-step: &sonar-cloud
name: Analyse the code
caches:
- sonar
script:
- pipe: sonarsource/sonarcloud-scan:1.0.1
- pipe: sonarsource/sonarcloud-quality-gate:0.1.3
artifacts:
- target/**
However when it executes the second pipe, I get the following error:
docker: Error response from daemon: plugin pipelines failed with error: Post http://%2Frun%2Fdocker%2Fplugins%2Fpipelines.sock/AuthZPlugin.AuthZReq: dial unix /run/docker/plugins/pipelines.sock: connect: connection refused.
I am wondering if you had the same issue ? and how you solved it.
Full log here pipelineLog-2.txt (19.9 KB)