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:
IMAGE_TARGET_DEB: "${CI_REGISTRY_IMAGE}/debian12_validate_workflows_build_env"
stages: # List of stages for jobs, and their order of execution
- build
- test
- package
- install
- build-env
- test-tool
- package-tool
- test-package
.build-env-job:
stage: build
stage: build-env
timeout: 10m
tags:
- "docker"
......@@ -45,7 +45,7 @@ build-debian-env-job:
IMAGE_TARGET: ${IMAGE_TARGET_DEB}
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
tags:
- "docker"
......@@ -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"
package-debian-job:
stage: package
stage: package-tool
timeout: 5m
image:
name: "${IMAGE_TARGET_DEB}:latest"
......@@ -90,7 +90,7 @@ package-debian-job:
- "*.deb"
install-debian-job:
stage: install
stage: test-package
timeout: 5m
image:
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