Our bitucket pipelines are taking time forever and we get paid for each minute
how can this be reolved ?
Hi @vsharma ,
It sounds like you're getting a build that never completes. If this is the case then it's probably caused by a process that is not completing. You can run this build on a local docker container using instructions here https://confluence.atlassian.com/bitbucket/debug-your-pipelines-locally-with-docker-838273569.html and see whether there are any unterminated processes. Alternatively, you can add
while true; do sleep 30; ps -aux; done &
as the first command in your step which will print the running processes every thirty seconds.
If your pipeline is completing correctly but taking too long you can instead consult our documentation for caches here https://confluence.atlassian.com/bitbucket/caching-dependencies-895552876.html
If neither of these is what you're looking for you will have to raise a support ticket at https://support.atlassian.com/contact/#/ so we can get more information.
Cheers,
Tom
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.