Last year we launched 16x step sizes as part of our commitment to improve Bitbucket Pipelines performance. Demand continues to increase by customers working on increasingly complex projects. In response, we are excited to introduce the 24x and 32x build size.
New CPU and memory upgrades
The 24x and 32 builds offer increased CPU and Memory options for builds.
For reference:
- 16x builds will be provisioned with 16 CPU cores and 32GB of memory
- 24x builds will be provisioned with 48 CPU cores and 96GB of memory
- 32x builds will be provisioned with 64 CPU cores and 128GB of memory
Example — using the size option to increase the memory available to all pipeline sateps
options:
size: 24x
pipelines:
default:
- step:
script:
- echo "24x memory and CPU is probably not needed for an echo command"
Example — using the size option to increase the memory available to one pipeline step
pipelines:
default:
- step:
size: 32x
script:
- echo "This step gets 32x the memory and CPU of 1x steps!"
For more information on setting up and using the larger step sizes, check out the Pipelines documentation.