-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bitbucket "authorization denied" --> API call limitation? #882
Comments
Thanks for reporting!
Could you give me a little bit more context, please?
This has been deprecated (by docker) for a while now.
I would not mess with $PATH unless there is a good reason to do that. |
According to https://support.atlassian.com/bitbucket-cloud/docs/run-docker-commands-in-bitbucket-pipelines/ running docker containers should be a supported use case. And it looks like bitbucket restricts the locations that can be mounted via volumes. If Docker does work anymore, there is as well the |
I added this stuff to bitbucket-pipelines.yml. Didn't seem to change anything, though-
--> Build tab docker tab |
Here's the
|
This may all be a red herring. I have other bitbucket pipelines that are still succeeding, same |
According to your logs, industrial_ci is running and even managed to start the docker container and install things. |
Same symptoms unfortunately. The build tab is stuck at...
The docker tab is stuck at... (don't ask me why there's still a docker tab)
|
Maybe relevant:
https://stackoverflow.com/q/78424795 Is the docker image that |
OK, if I remove some deps, I can at least get to the point where the tests are run. They don't pass because |
For me it looks like 2h time limit for the pipeline.
No, industrial_ci uses |
It only takes about 30s to build and another 30s to run tests locally. It's not a huge pkg at all but it does have a lot of dependencies (moveit2 & ros2_control). OK, this got me to the point where CI quickly runs tests. I'm happy with that! Closing the issue, thanks for the hints.
I think what's going on is it hits the bitbucket API limit then just spins until it times out. |
On Sep 17 I started experiencing this issue on my bitbucket pipelines:
I guess it's probably not a coincidence that bitbucket deprecated legacy pipelines on Sep 17.
There are some solutions described here
Basically it sounds like this is deprecated:
DOCKER_BUILDKIT=0
Maybe the new way to do it is:
export PATH=/usr/bin:$PATH
Here's my
bitbucket-pipelines.yml
with the fix I attempted. It didn't work.The text was updated successfully, but these errors were encountered: