-
Suggestion
-
Resolution: Fixed
As of now, the user can only specify Docker service memory that applies to all the builds.
However, some scenario users would like to test their integration and would like to have different and larger docker service memory to proceed further.
It will best to provide the ability to create multiple definitions for docker service so that users can specify specific docker service memory for specific build.
Configuration Suggestion:
#!python
definitions:
services:
docker:
memory: 3024
docker-1:
memory: 7128
pipelines:
branches:
# Build with 4GB memory allocated
master:
- step:
script:
- echo "Hello"
services:
- docker
custom:
# Build with 8GB memory allocated
integration-tests:
- step:
size: 2x
script:
- echo "Tests completed"
services:
- docker-1