Skip to content
Snippets Groups Projects
Commit eb72a6b2 authored by Jens Steidl's avatar Jens Steidl :baby_chick:
Browse files

- minor: standardized naming

parent a9afed74
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ variables: ...@@ -5,7 +5,7 @@ variables:
stages: # List of stages for jobs, and their order of execution stages: # List of stages for jobs, and their order of execution
- build - build
- test - test
- packaging - package
.build-env-job: .build-env-job:
stage: build stage: build
...@@ -37,13 +37,13 @@ stages: # List of stages for jobs, and their order of execution ...@@ -37,13 +37,13 @@ stages: # List of stages for jobs, and their order of execution
--use-new-run --use-new-run
--ignore-var-run --ignore-var-run
build-deb-env-job: build-debian-env-job:
extends: .build-env-job extends: .build-env-job
variables: variables:
DOCKERFILE: ${DOCKERFILE_DEB} DOCKERFILE: ${DOCKERFILE_DEB}
IMAGE_TARGET: ${IMAGE_TARGET_DEB} IMAGE_TARGET: ${IMAGE_TARGET_DEB}
test-in-debian-job: # This job runs in the test stage. test-debian-job: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully. stage: test # It only starts when the job in the build stage completes successfully.
timeout: 5m timeout: 5m
tags: tags:
...@@ -53,8 +53,8 @@ test-in-debian-job: # This job runs in the test stage. ...@@ -53,8 +53,8 @@ test-in-debian-job: # This job runs in the test stage.
script: script:
- shellcheck --color=always --shell=bash --enable=all --exclude=SC2317 "src/usr/local/bin/validate_workflow.sh" - shellcheck --color=always --shell=bash --enable=all --exclude=SC2317 "src/usr/local/bin/validate_workflow.sh"
packaging-deb-job: package-debian-job:
stage: packaging stage: package
timeout: 5m timeout: 5m
image: image:
name: "${IMAGE_TARGET_DEB}:latest" name: "${IMAGE_TARGET_DEB}:latest"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment