More descriptive names for stages
This commit is contained in:
@@ -4,16 +4,16 @@ services:
|
|||||||
- docker:dind
|
- docker:dind
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- Base
|
- Build Base
|
||||||
- Variants
|
- Build Variants
|
||||||
- Push
|
- Push Images
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
DOCKER_HOST: tcp://docker:2375/
|
DOCKER_HOST: tcp://docker:2375/
|
||||||
DOCKER_DRIVER: overlay2
|
DOCKER_DRIVER: overlay2
|
||||||
|
|
||||||
build-base:
|
build-base:
|
||||||
stage: Base
|
stage: Build Base
|
||||||
artifacts:
|
artifacts:
|
||||||
expire_in: 1 week
|
expire_in: 1 week
|
||||||
paths:
|
paths:
|
||||||
@@ -29,7 +29,7 @@ build-base:
|
|||||||
- docker save --output "./images/$CI_COMMIT_SHORT_SHA.tar" "$CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA"
|
- docker save --output "./images/$CI_COMMIT_SHORT_SHA.tar" "$CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA"
|
||||||
|
|
||||||
build-git:
|
build-git:
|
||||||
stage: Variants
|
stage: Build Variants
|
||||||
artifacts:
|
artifacts:
|
||||||
expire_in: 1 week
|
expire_in: 1 week
|
||||||
paths:
|
paths:
|
||||||
@@ -47,7 +47,7 @@ build-git:
|
|||||||
- docker save --output "./images/$CI_COMMIT_SHORT_SHA-git.tar" "$CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA-git"
|
- docker save --output "./images/$CI_COMMIT_SHORT_SHA-git.tar" "$CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA-git"
|
||||||
|
|
||||||
push:
|
push:
|
||||||
stage: Push
|
stage: Push Images
|
||||||
dependencies:
|
dependencies:
|
||||||
- build-base
|
- build-base
|
||||||
- build-git
|
- build-git
|
||||||
|
|||||||
Reference in New Issue
Block a user