Skip to content
Snippets Groups Projects

-ops added CAPO_PATH variable to Dockerfile.base

Merged Andrew Kapuscinski requested to merge capo-path-to-base-image into main
+ 9
9
@@ -77,18 +77,24 @@ unit test dev workflow:
variables:
SERVICE_NAME: "workflow"
extends: .unit-test
needs:
- build dev workflow
unit test dev capability:
stage: unit-test-dev
variables:
SERVICE_NAME: "capability"
extends: .unit-test
needs:
- build dev capability
unit test dev notification:
stage: unit-test-dev
variables:
SERVICE_NAME: "notification"
extends: .unit-test
needs:
- build dev notification
# Push Stages
push dev workflow:
@@ -97,7 +103,7 @@ push dev workflow:
SERVICE_NAME: "workflow"
extends: .push
needs:
- build dev workflow
- unit test dev workflow
push dev capability:
stage: push-dev
@@ -105,7 +111,7 @@ push dev capability:
SERVICE_NAME: "capability"
extends: .push
needs:
- build dev capability
- unit test dev capability
push dev notification:
stage: push-dev
@@ -113,7 +119,7 @@ push dev notification:
SERVICE_NAME: "notification"
extends: .push
needs:
- build dev notification
- unit test dev notification
# Cleanup
clean build workflow:
@@ -121,24 +127,18 @@ clean build workflow:
variables:
SERVICE_NAME: "workflow"
extends: .cleanup
needs:
- build dev workflow
clean build capability:
stage: clean-images
variables:
SERVICE_NAME: "capability"
extends: .cleanup
needs:
- build dev capability
clean build notification:
stage: clean-images
variables:
SERVICE_NAME: "notification"
extends: .cleanup
needs:
- build dev notification
# Deploy Stages
Loading