This question is in reference to Atlassian Documentation: Limitations of Bitbucket Pipelines (beta)
Some of my builds on Bitbucket Pipelines are failing. I'm using Maven/Java, and oddly some of the surefire threads fail with ``The forked VM terminated without properly saying goodbye``, so this is just a shot in the dark as to why. The same commit builds fine on Bamboo.
Yes, there are limits. The most important one is probably the 2GB memory limit. You could try tweaking your VM settings to limit the amount of memory it can attempt to allocate (eg. using the -Xmx parameter). In the case of surefire it looks like you have it configured to fork a new VM, so be sure to check any settings related to both the original VM (running maven) and the forked VM that is running the tests.
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.