Hi
Guys, I have configured group runners (AWS) spawned by docker machine, runners are tagged e.g. 2xlarge. I would like to achieve setup RAM/vCPU per job, let’s say:
stages:
- build
- test
- deploy
build:
image: registry.gitlab.com/superhiperproject/npm:latest
stage: build
script:
- build.sh
only:
- web
tags:
- 2xlarge
test:
image: registry.gitlab.com/superhiperproject/npm:latest
stage: test
script:
- test.sh
only:
- web
tags:
- 2xlarge
deploy:
image: registry.gitlab.com/superhiperproject/npm:latest
stage: deploy
script:
- test.sh
only:
- web
tags:
- 2xlarge
For jobs build/test I would like assign RAM=8GB and vCPU=4, for deploy default settings. How can I achieve it? It’s possible at all?
Thanks