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

- renamed stages

parent 3a700c28
No related branches found
No related tags found
No related merge requests found
...@@ -3,13 +3,13 @@ variables: ...@@ -3,13 +3,13 @@ variables:
IMAGE_TARGET_DEB: "${CI_REGISTRY_IMAGE}/debian12_validate_workflows_build_env" IMAGE_TARGET_DEB: "${CI_REGISTRY_IMAGE}/debian12_validate_workflows_build_env"
stages: # List of stages for jobs, and their order of execution stages: # List of stages for jobs, and their order of execution
- build - build-env
- test - test-tool
- package - package-tool
- install - test-package
.build-env-job: .build-env-job:
stage: build stage: build-env
timeout: 10m timeout: 10m
tags: tags:
- "docker" - "docker"
...@@ -45,7 +45,7 @@ build-debian-env-job: ...@@ -45,7 +45,7 @@ build-debian-env-job:
IMAGE_TARGET: ${IMAGE_TARGET_DEB} IMAGE_TARGET: ${IMAGE_TARGET_DEB}
test-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-tool # It only starts when the job in the build stage completes successfully.
timeout: 5m timeout: 5m
tags: tags:
- "docker" - "docker"
...@@ -55,7 +55,7 @@ test-debian-job: # This job runs in the test stage. ...@@ -55,7 +55,7 @@ test-debian-job: # This job runs in the test stage.
- 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"
package-debian-job: package-debian-job:
stage: package stage: package-tool
timeout: 5m timeout: 5m
image: image:
name: "${IMAGE_TARGET_DEB}:latest" name: "${IMAGE_TARGET_DEB}:latest"
...@@ -90,7 +90,7 @@ package-debian-job: ...@@ -90,7 +90,7 @@ package-debian-job:
- "*.deb" - "*.deb"
install-debian-job: install-debian-job:
stage: install stage: test-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