When having this pipeline
pipelines:
custom: deploy-directcore:
- step:
name: Build
caches:
- node
script:
- bash build-script.sh
services:
- docker
- step:
name: Deploy
script:
- sh publish-script.sh development
The service docker also gets loaded on the second step, adding another 20 seconds to the build time itself, is it possible without removing the service from the first step to solve this problem?
Step 1 without docker takes 1:30 to complete, with 1:20
Step 2: 0:40 without and 1:00 with
Any ideas? Both steps are using different images by the way, which is the reason I've splitted them in 2.